svn commit: trunk/uClibc/test

egtvedt at uclibc.org egtvedt at uclibc.org
Thu Oct 2 14:15:05 UTC 2008


Author: egtvedt
Date: 2008-10-02 07:15:05 -0700 (Thu, 02 Oct 2008)
New Revision: 23576

Log:
Fix bad commit 23574 for io redirecting when running the test suite

This patch fixes the previous r23574 and uses a correct syntax for redirecting.

./foo > bar.out 2>&1



Modified:
   trunk/uClibc/test/Test.mak


Changeset:
Modified: trunk/uClibc/test/Test.mak
===================================================================
--- trunk/uClibc/test/Test.mak	2008-10-02 13:30:31 UTC (rev 23575)
+++ trunk/uClibc/test/Test.mak	2008-10-02 14:15:05 UTC (rev 23576)
@@ -59,7 +59,7 @@
 	$(showtest)
 	$(Q)\
 	$(WRAPPER) $(WRAPPER_$(patsubst %_glibc,%,$(binary_name))) \
-	./$(binary_name) $(OPTS) $(OPTS_$(patsubst %_glibc,%,$(binary_name))) > "$(binary_name).out" 2>> "$(binary_name).out" ; \
+	./$(binary_name) $(OPTS) $(OPTS_$(patsubst %_glibc,%,$(binary_name))) > "$(binary_name).out" 2>&1 ; \
 		ret=$$? ; \
 		expected_ret="$(RET_$(patsubst %_glibc,%,$(binary_name)))" ; \
 		test -z "$$expected_ret" && export expected_ret=0 ; \




More information about the uClibc-cvs mailing list