mirror of git://gcc.gnu.org/git/gcc.git
* btest-gcc.sh (TESTLOGS): Make libstdc++.sum optional.
From-SVN: r100648
This commit is contained in:
parent
addd6f6401
commit
e7700967a1
|
|
@ -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>
|
2004-11-07 James A. Morrison <phython@gcc.gnu.org>
|
||||||
|
|
||||||
* README: Update website URL.
|
* README: Update website URL.
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
# Test GCC.
|
# 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
|
# 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
|
# 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.
|
# look at.
|
||||||
TESTLOGS="gcc/testsuite/gcc.sum
|
TESTLOGS="gcc/testsuite/gcc.sum
|
||||||
gcc/testsuite/g++.sum
|
gcc/testsuite/g++.sum
|
||||||
gcc/testsuite/objc.sum
|
gcc/testsuite/objc.sum"
|
||||||
$H_TARGET/libstdc++-v3/testsuite/libstdc++.sum"
|
|
||||||
|
|
||||||
# Build.
|
# Build.
|
||||||
echo build > $RESULT
|
echo build > $RESULT
|
||||||
|
|
@ -122,6 +121,9 @@ make -k check-gcc
|
||||||
|
|
||||||
# Test libstd++-v3
|
# Test libstd++-v3
|
||||||
make check-target-libstdc++-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
|
# Test libffi
|
||||||
make check-target-libffi
|
make check-target-libffi
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue