From: Daniel Vetter <daniel@ffwll.ch>
To: jeff.mcgee@intel.com
Cc: intel-gfx@lists.freedesktop.org
Subject: Re: [PATCH 3/3] pm_rps: Fix verbose option and streamline its use
Date: Sun, 19 Jan 2014 22:33:27 +0100 [thread overview]
Message-ID: <20140119213327.GC15089@phenom.ffwll.local> (raw)
In-Reply-To: <1389999366-19715-4-git-send-email-jeff.mcgee@intel.com>
On Fri, Jan 17, 2014 at 04:56:06PM -0600, jeff.mcgee@intel.com wrote:
> From: Jeff McGee <jeff.mcgee@intel.com>
>
> Signed-off-by: Jeff McGee <jeff.mcgee@intel.com>
> ---
> tests/pm_rps.c | 52 ++++++++++++++++++++++++++++++++++++++++++----------
> 1 file changed, 42 insertions(+), 10 deletions(-)
>
> diff --git a/tests/pm_rps.c b/tests/pm_rps.c
> index 4d64f0a..192dca7 100644
> --- a/tests/pm_rps.c
> +++ b/tests/pm_rps.c
> @@ -31,6 +31,7 @@
> #include <stdlib.h>
> #include <string.h>
> #include <unistd.h>
> +#include <getopt.h>
> #include "drmtest.h"
>
> static bool verbose = false;
> @@ -130,6 +131,8 @@ static void dumpit(void)
>
> printf("\n");
> }
> +#define dump() if (verbose) dumpit()
> +#define log(...) if (verbose) printf(__VA_ARGS__)
>
> static void pm_rps_exit_handler(int sig)
> {
> @@ -142,8 +145,40 @@ static void pm_rps_exit_handler(int sig)
> }
> }
>
> -igt_main
> +static int opt_handler(int opt, int opt_index)
> {
> + switch (opt) {
> + case 'v':
> + verbose = true;
> + break;
> + default:
> + assert(0);
> + }
> +
> + return 0;
> +}
> +
> +/* Mod of igt_subtest_init that adds our extra options */
> +void subtest_init(int argc, char **argv)
Missing static here. I've added it back in.
-Daniel
> +{
> + struct option long_opts[] = {
> + {"verbose", 0, 0, 'v'}
> + };
> + const char *help_str = " -v, --verbose";
> + int ret;
> +
> + ret = igt_subtest_init_parse_opts(argc, argv, "v", long_opts,
> + help_str, opt_handler);
> +
> + if (ret < 0)
> + /* exit with no error for -h/--help */
> + exit(ret == -1 ? 0 : ret);
> +}
> +
> +int main(int argc, char **argv)
> +{
> + subtest_init(argc, argv);
> +
> igt_skip_on_simulation();
>
> igt_fixture {
> @@ -176,21 +211,16 @@ igt_main
> }
>
> igt_subtest("min-max-config-at-idle") {
> - if (verbose)
> - printf("Original min = %d\nOriginal max = %d\n",
> - origmin, origmax);
> + log("Original min = %d\nOriginal max = %d\n", origmin, origmax);
>
> - if (verbose)
> - dumpit();
> + dump();
>
> checkit();
> setfreq(origmin);
> - if (verbose)
> - dumpit();
> + dump();
> igt_assert(fcur == fmin);
> setfreq(origmax);
> - if (verbose)
> - dumpit();
> + dump();
> igt_assert(fcur == fmax);
> checkit();
>
> @@ -209,4 +239,6 @@ igt_main
> writeval(stuff[MIN].filp, origmin);
> writeval(stuff[MAX].filp, origmax);
> }
> +
> + igt_exit();
> }
> --
> 1.8.5.2
>
> _______________________________________________
> Intel-gfx mailing list
> Intel-gfx@lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/intel-gfx
--
Daniel Vetter
Software Engineer, Intel Corporation
+41 (0) 79 365 57 48 - http://blog.ffwll.ch
prev parent reply other threads:[~2014-01-19 21:33 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-01-17 22:56 More fixes for igt pm_rps jeff.mcgee
2014-01-17 22:56 ` [PATCH 1/3] pm_rps: Add read back checking on sysfs writes jeff.mcgee
2014-01-17 22:56 ` [PATCH 2/3] pm_rps: Convert to subtest structure jeff.mcgee
2014-01-19 14:29 ` Daniel Vetter
2014-01-17 22:56 ` [PATCH 3/3] pm_rps: Fix verbose option and streamline its use jeff.mcgee
2014-01-18 14:23 ` Daniel Vetter
2014-01-19 21:33 ` Daniel Vetter [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20140119213327.GC15089@phenom.ffwll.local \
--to=daniel@ffwll.ch \
--cc=intel-gfx@lists.freedesktop.org \
--cc=jeff.mcgee@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox