diff options
-rw-r--r-- | test/args/Makefile | 10 | ||||
-rw-r--r-- | test/args/arg_test.c | 8 | ||||
-rw-r--r-- | test/args/arg_test.out.good | 13 |
3 files changed, 25 insertions, 6 deletions
diff --git a/test/args/Makefile b/test/args/Makefile index a4bcfc588..8c466df9c 100644 --- a/test/args/Makefile +++ b/test/args/Makefile @@ -29,8 +29,14 @@ arg_test: arg_test.c Makefile $(TESTDIR)/Rules.mak $(CC) $(CFLAGS) -c $< -o $@.o $(CC) $(LDFLAGS) $@.o -o $@ $(EXTRA_LIBS) $(STRIPTOOL) -x -R .note -R .comment $@ - ./$@ a b c d e f g h + env -i \ + ENVVAR=123 \ + SOMETHING=sldajfasdf \ + BLAHBLAH=" hi hi " \ + ./$@ a b c d e f g h \ + > arg_test.out + diff -u arg_test.out.good arg_test.out -@ echo " " clean: - $(RM) *.[oa] *~ core $(TARGETS) + $(RM) *.[oa] *~ core $(TARGETS) *.out diff --git a/test/args/arg_test.c b/test/args/arg_test.c index b99f760c0..acc4465d9 100644 --- a/test/args/arg_test.c +++ b/test/args/arg_test.c @@ -36,20 +36,20 @@ int main(int argc, char **argv) unsigned long sp; sp = (unsigned long) __builtin_frame_address(0); if(sp&0xf){ - fprintf(stderr, "stack pointer is unaligned! (%08lx)\n", sp); + printf("stack pointer is unaligned! (%08lx)\n", sp); } } #endif - fprintf(stderr, "argc=%d\n", argc); + printf("argc=%d\n", argc); for(i=0;i<argc;i++) { - fprintf(stderr, "argv[%d]='%s'\n", i, argv[i]); + printf("argv[%d]='%s'\n", i, argv[i]); } i=0; while(*index) { - fprintf(stderr, "environ[%d]='%s'\n", i++, *index++); + printf("environ[%d]='%s'\n", i++, *index++); } exit(0); diff --git a/test/args/arg_test.out.good b/test/args/arg_test.out.good new file mode 100644 index 000000000..937a80367 --- /dev/null +++ b/test/args/arg_test.out.good @@ -0,0 +1,13 @@ +argc=9 +argv[0]='./arg_test' +argv[1]='a' +argv[2]='b' +argv[3]='c' +argv[4]='d' +argv[5]='e' +argv[6]='f' +argv[7]='g' +argv[8]='h' +environ[0]='ENVVAR=123' +environ[1]='SOMETHING=sldajfasdf' +environ[2]='BLAHBLAH= hi hi ' |