diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2014-01-04 01:11:00 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2014-01-04 01:11:00 +0000 |
commit | dfda0cb34b738e8d555c93e3f4f316a2594a9d25 (patch) | |
tree | 4f295e79675d1c9d62354c0c23719c00b77183f1 /test-getsubopt.c | |
parent | c17325b87a0a99d79e776e4c805dc22ae21cef67 (diff) | |
download | mandoc-dfda0cb34b738e8d555c93e3f4f316a2594a9d25.tar.gz |
Clean up feature tests:
* Split the configure steering script out of the Makefile.
* Let the configure step depend on the test sources.
* Clean up the test programs such that they can be run.
Diffstat (limited to 'test-getsubopt.c')
-rw-r--r-- | test-getsubopt.c | 13 |
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)); } |