From ffbec081e48741e831f578bfa180705c3202f75f Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Fri, 1 Jul 2005 00:09:25 +0000 Subject: make the test silent/non-interactive and only abort if it actually fails --- test/args/Makefile | 10 ++++++++-- test/args/arg_test.c | 8 ++++---- test/args/arg_test.out.good | 13 +++++++++++++ 3 files changed, 25 insertions(+), 6 deletions(-) create mode 100644 test/args/arg_test.out.good (limited to 'test') 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