]> git.ipfire.org Git - thirdparty/elfutils.git/commitdiff
2005-12-14 Roland McGrath <roland@redhat.com>
authorRoland McGrath <roland@redhat.com>
Thu, 15 Dec 2005 02:37:09 +0000 (02:37 +0000)
committerRoland McGrath <roland@redhat.com>
Thu, 15 Dec 2005 02:37:09 +0000 (02:37 +0000)
* run-native-test.sh: Redirect output from native test process.

tests/ChangeLog
tests/run-native-test.sh

index 4cc42b85e39cd43e95bc0e0373871d5e0930d335..2b51b5c23dedd4cb10308a11c42d8f831800ba26 100644 (file)
@@ -1,3 +1,7 @@
+2005-12-14  Roland McGrath  <roland@redhat.com>
+
+       * run-native-test.sh: Redirect output from native test process.
+
 2005-12-13  Roland McGrath  <roland@redhat.com>
 
        * allregs.c (main): Fail if we find no registers.
index c9126c6143cf85dfc3799cf655ef20b37c403e6a..d8202146dc1ee5c33c74d62b7455cea1e544eb9b 100755 (executable)
@@ -35,7 +35,7 @@ trap native_cleanup 0 1 2 15
 for cc in "$HOSTCC" "$HOST_CC" cc gcc "$CC"; do
   test "x$cc" != x || continue
   $cc -o native -g native.c > /dev/null 2>&1 &&
-  ./native & native=$! &&
+  ./native > /dev/null 2>&1 & native=$! &&
   sleep 1 && kill -0 $native 2> /dev/null &&
   break ||
   native=0