From: Thomas Wood <thomas.wood@intel.com>
To: intel-gfx@lists.freedesktop.org
Subject: [PATCH i-g-t] lib: avoid getopt value conflicts with tests
Date: Fri, 25 Jul 2014 17:08:39 +0100 [thread overview]
Message-ID: <1406304519-7100-1-git-send-email-thomas.wood@intel.com> (raw)
In-Reply-To: <8FCC70911F3E9548866CA0E51893BCC31A1DAE1E@IRSMSX105.ger.corp.intel.com>
Most tests use a printable character as the value for getopt to return,
so avoid conflicts by using non-printing values for the standard options.
Signed-off-by: Thomas Wood <thomas.wood@intel.com>
---
lib/igt_core.c | 23 +++++++++++++++--------
1 file changed, 15 insertions(+), 8 deletions(-)
diff --git a/lib/igt_core.c b/lib/igt_core.c
index a0c9499..882614a 100644
--- a/lib/igt_core.c
+++ b/lib/igt_core.c
@@ -218,6 +218,13 @@ int num_test_children;
int test_children_sz;
bool test_child;
+enum {
+ OPT_LIST_SUBTESTS,
+ OPT_RUN_SUBTEST,
+ OPT_DEBUG,
+ OPT_HELP
+};
+
__attribute__((format(printf, 1, 2)))
static void kmsg(const char *format, ...)
#define KERN_INFO "<5>"
@@ -320,10 +327,10 @@ static int common_init(int argc, char **argv,
{
int c, option_index = 0;
static struct option long_options[] = {
- {"list-subtests", 0, 0, 'l'},
- {"run-subtest", 1, 0, 'r'},
- {"debug", 0, 0, 'd'},
- {"help", 0, 0, 'h'},
+ {"list-subtests", 0, 0, OPT_LIST_SUBTESTS},
+ {"run-subtest", 1, 0, OPT_RUN_SUBTEST},
+ {"debug", 0, 0, OPT_DEBUG},
+ {"help", 0, 0, OPT_HELP},
};
char *short_opts;
struct option *combined_opts;
@@ -370,18 +377,18 @@ static int common_init(int argc, char **argv,
while ((c = getopt_long(argc, argv, short_opts, combined_opts,
&option_index)) != -1) {
switch(c) {
- case 'd':
+ case OPT_DEBUG:
igt_log_level = IGT_LOG_DEBUG;
break;
- case 'l':
+ case OPT_LIST_SUBTESTS:
if (!run_single_subtest)
list_subtests = true;
break;
- case 'r':
+ case OPT_RUN_SUBTEST:
if (!list_subtests)
run_single_subtest = strdup(optarg);
break;
- case 'h':
+ case OPT_HELP:
print_usage(help_str, false);
ret = -1;
goto out;
--
1.9.3
next prev parent reply other threads:[~2014-07-25 16:08 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-07-23 10:57 [PATCH i-g-t 0/8] command line parsing Thomas Wood
2014-07-23 10:57 ` [PATCH i-g-t 1/8] lib: warn when attempting to run an unknown subtest Thomas Wood
2014-07-24 9:49 ` Gore, Tim
2014-07-23 10:57 ` [PATCH i-g-t 2/8] tests: remove unused getopt header includes Thomas Wood
2014-07-24 9:50 ` Gore, Tim
2014-07-23 10:57 ` [PATCH i-g-t 3/8] lib: move option parsing into common_init Thomas Wood
2014-07-23 12:13 ` Daniel Vetter
2014-07-23 12:15 ` Daniel Vetter
2014-07-24 9:52 ` Gore, Tim
2014-07-23 10:57 ` [PATCH i-g-t 4/8] lib: add igt_simple_init_parse_opts Thomas Wood
2014-07-24 9:54 ` Gore, Tim
2014-07-23 10:57 ` [PATCH i-g-t 5/8] lib: don't ignore unknown options in multi-tests Thomas Wood
2014-07-24 9:55 ` Gore, Tim
2014-07-23 10:57 ` [PATCH i-g-t 6/8] tests: convert simple tests to use igt_simple_init_parse_opts Thomas Wood
2014-07-24 10:17 ` Gore, Tim
2014-07-25 16:08 ` Thomas Wood [this message]
2014-07-25 16:57 ` [PATCH i-g-t] lib: avoid getopt value conflicts with tests Paulo Zanoni
2014-07-28 9:38 ` Thomas Wood
2014-07-28 15:18 ` [PATCH i-g-t] lib: check test options for conflicts Thomas Wood
2014-07-23 10:57 ` [PATCH i-g-t 7/8] lib: always warn about unknown options Thomas Wood
2014-07-24 10:33 ` Gore, Tim
2014-07-23 10:57 ` [PATCH i-g-t 8/8] lib: add a command line option to enable debug output in tests Thomas Wood
2014-07-24 10:37 ` Gore, Tim
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=1406304519-7100-1-git-send-email-thomas.wood@intel.com \
--to=thomas.wood@intel.com \
--cc=intel-gfx@lists.freedesktop.org \
/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