summaryrefslogtreecommitdiff
path: root/test/nptl/tst-mqueue7.c
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2014-12-28 22:10:35 -0600
committerWaldemar Brodkorb <wbx@openadk.org>2014-12-28 22:10:35 -0600
commitb7967026760157bbbfc4fb9db6862cd2085bb0d9 (patch)
tree00b5ac557d740016ac0864a9120b060cd3386681 /test/nptl/tst-mqueue7.c
parent5f7dc9b62575cfab781abda80602515ce42b43e8 (diff)
revert getopt changes to tests
The upstream changes are not complete and let the tests fail. Revert the changes for now, may be upstream will make a better fix later.
Diffstat (limited to 'test/nptl/tst-mqueue7.c')
-rw-r--r--test/nptl/tst-mqueue7.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/test/nptl/tst-mqueue7.c b/test/nptl/tst-mqueue7.c
index 01d7cd7d6..d1a652903 100644
--- a/test/nptl/tst-mqueue7.c
+++ b/test/nptl/tst-mqueue7.c
@@ -32,12 +32,9 @@
static mqd_t after_exec = (mqd_t) -1;
#define CMDLINE_OPTIONS \
- "a:"
-/*
{ "after-exec", required_argument, NULL, OPT_AFTEREXEC },
-*/
#define CMDLINE_PROCESS \
- case 'a': \
+ case OPT_AFTEREXEC: \
after_exec = (mqd_t) strtoul (optarg, NULL, 0); \
break;