svn commit: branches/uClibc-nptl/test

kraj at uclibc.org kraj at uclibc.org
Fri Aug 15 05:18:24 UTC 2008


Author: kraj
Date: 2008-08-14 22:18:23 -0700 (Thu, 14 Aug 2008)
New Revision: 23079

Log:
&> seems like tcsh like. busybox/ash does not seem to like it I am getting wrong fd number error. So I replaced it with something that makes ash happy.


Modified:
   branches/uClibc-nptl/test/Test.mak


Changeset:
Modified: branches/uClibc-nptl/test/Test.mak
===================================================================
--- branches/uClibc-nptl/test/Test.mak	2008-08-14 21:57:43 UTC (rev 23078)
+++ branches/uClibc-nptl/test/Test.mak	2008-08-15 05:18:23 UTC (rev 23079)
@@ -59,7 +59,7 @@
 	$(showtest)
 	$(Q)\
 	$(WRAPPER) $(WRAPPER_$(patsubst %_glibc,%,$(binary_name))) \
-	./$(binary_name) $(OPTS) $(OPTS_$(patsubst %_glibc,%,$(binary_name))) &> "$(binary_name).out" ; \
+	./$(binary_name) $(OPTS) $(OPTS_$(patsubst %_glibc,%,$(binary_name))) >/dev/null 2>&1 > "$(binary_name).out" ; \
 		ret=$$? ; \
 		expected_ret="$(RET_$(patsubst %_glibc,%,$(binary_name)))" ; \
 		test -z "$$expected_ret" && export expected_ret=0 ; \




More information about the uClibc-cvs mailing list