aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/test-getsubopt.c
diff options
context:
space:
mode:
Diffstat (limited to 'test-getsubopt.c')
-rw-r--r--test-getsubopt.c13
1 files changed, 10 insertions, 3 deletions
diff --git a/test-getsubopt.c b/test-getsubopt.c
index 25e11246..2da98238 100644
--- a/test-getsubopt.c
+++ b/test-getsubopt.c
@@ -4,9 +4,16 @@
#include <stdlib.h>
+extern char *suboptarg;
+
int
-main(int argc, char **argv)
+main(void)
{
- getsubopt(argv, argv, argv);
- return 0;
+ char buf[] = "k=v";
+ char *options = buf;
+ char token0[] = "k";
+ char *const tokens[] = { token0, NULL };
+ char *value = NULL;
+ return( ! (0 == getsubopt(&options, tokens, &value)
+ && suboptarg == buf && value == buf+2 && options == buf+3));
}