diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2017-05-24 09:17:34 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2017-06-15 16:01:38 -0300 |
commit | 244361ebaec57a6fbb9998bfa5ec71ee8d88f3e8 (patch) | |
tree | e98dba147ced72499f4754995d1556c7ba22404a /support/test-driver.h | |
parent | 70fe2eb79417166c39a36699f591138bfe5c5307 (diff) | |
download | glibc-244361ebaec57a6fbb9998bfa5ec71ee8d88f3e8.tar glibc-244361ebaec57a6fbb9998bfa5ec71ee8d88f3e8.tar.gz glibc-244361ebaec57a6fbb9998bfa5ec71ee8d88f3e8.tar.bz2 glibc-244361ebaec57a6fbb9998bfa5ec71ee8d88f3e8.zip |
support: Add optstring support
This patch adds an option to test to add small command line option
through CMDLINE_OPTSTRING define. For instance:
#define CMDLINE_OPTSTRING "vd"
static void
cmdline_process_function (int c)
{
switch (c):
'v':
/* process '-v' option. */
break;
'd':
/* process '-d' option. */
break;
}
#define CMDLINE_PROCESS cmdline_process_function
It will add both '-v' and '-d' along with already default long options.
* support/support_test_main.c (support_test_main): Use optstring
member for option string in getopt_long.
* support/test-driver.c: Add comment about CMDLINE_OPTSTRING.
(CMDLINE_OPTSTRING): New define.
* support/test-driver.h (test_config): Add optstring member.
Diffstat (limited to 'support/test-driver.h')
-rw-r--r-- | support/test-driver.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/support/test-driver.h b/support/test-driver.h index af1971a9ca..a8fe9c3565 100644 --- a/support/test-driver.h +++ b/support/test-driver.h @@ -35,6 +35,7 @@ struct test_config int expected_status; /* Expected exit status. */ int expected_signal; /* If non-zero, expect termination by signal. */ char no_mallopt; /* Boolean flag to disable mallopt. */ + const char *optstring; /* Short command line options. */ }; enum |