]> gcc.gnu.org Git - gcc.git/commitdiff
* btest-gcc.sh (TESTLOGS): Make libstdc++.sum optional.
authorHans-Peter Nilsson <hp@axis.com>
Mon, 6 Jun 2005 05:57:03 +0000 (05:57 +0000)
committerHans-Peter Nilsson <hp@gcc.gnu.org>
Mon, 6 Jun 2005 05:57:03 +0000 (05:57 +0000)
From-SVN: r100648

contrib/regression/ChangeLog
contrib/regression/btest-gcc.sh

index 23e1e287fd204a06ac0a0dc1958380ee3c9e029a..cb5c802af70095426cc9b593043ebae5196b1391 100644 (file)
@@ -1,3 +1,7 @@
+2005-06-06  Hans-Peter Nilsson  <hp@axis.com>
+
+       * btest-gcc.sh (TESTLOGS): Make libstdc++.sum optional.
+
 2004-11-07  James A. Morrison  <phython@gcc.gnu.org>
 
        * README: Update website URL.
index 6311a6c1dffb9ddd8c0687e6c60f2d80f0ee2f79..512609b863305473fb164264323b9e77cdba05cc 100755 (executable)
@@ -1,7 +1,7 @@
 #!/bin/sh
 
 #  Test GCC.
-#  Copyright (C) 1999, 2000, 2001, 2002  Free Software Foundation, Inc.
+#  Copyright (C) 1999, 2000, 2001, 2002, 2005  Free Software Foundation, Inc.
 
 #  This program is free software; you can redistribute it and/or modify
 #  it under the terms of the GNU General Public License as published by
@@ -98,8 +98,7 @@ H_REAL_TARGET=`$SOURCE/config.sub $H_TARGET || exit 1`
 # look at.
 TESTLOGS="gcc/testsuite/gcc.sum
 gcc/testsuite/g++.sum
-gcc/testsuite/objc.sum
-$H_TARGET/libstdc++-v3/testsuite/libstdc++.sum"
+gcc/testsuite/objc.sum"
 
 # Build.
 echo build > $RESULT
@@ -122,6 +121,9 @@ make -k check-gcc
 
 # Test libstd++-v3
 make check-target-libstdc++-v3
+if [ -f $BUILD/$H_TARGET/libstdc++-v3/testsuite/libstdc++.sum ] ; then
+  TESTLOGS="$TESTLOGS $H_TARGET/libstdc++-v3/testsuite/libstdc++.sum"
+fi
 
 # Test libffi
 make check-target-libffi
This page took 0.069129 seconds and 5 git commands to generate.