* btest-gcc.sh (TESTLOGS): Add gfortran, and optionally libgomp.

From-SVN: r131146
This commit is contained in:
Geoffrey Keating 2007-12-23 02:32:15 +00:00 committed by Geoffrey Keating
parent 30f4c25dd8
commit 1584031f69
2 changed files with 7 additions and 0 deletions

View File

@ -1,5 +1,7 @@
2007-12-22 Geoff Keating <geoffk@geoffk.org>
* btest-gcc.sh (TESTLOGS): Add gfortran, and optionally libgomp.
* GCC_Regression_Tester.wdgt/widget.html: Mark as HTML 4.01,
which it now is, rather than XHTML, which it never was.
(<head>): Mark as UTF-8. Add title. Move CSS to top of

View File

@ -116,6 +116,7 @@ H_REAL_TARGET=`$SOURCE/config.sub $H_TARGET || exit 1`
# look at.
TESTLOGS="gcc/testsuite/gcc/gcc.sum
gcc/testsuite/g++/g++.sum
gcc/testsuite/gfortran/gfortran.sum
gcc/testsuite/objc/objc.sum"
# Build.
@ -153,6 +154,10 @@ if [ -f $BUILD/$H_TARGET/libjava/testsuite/libjava.sum ] ; then
TESTLOGS="$TESTLOGS $H_TARGET/libjava/testsuite/libjava.sum"
fi
if [ -f $BUILD/$H_TARGET/libgomp/testsuite/libgomp.sum ] ; then
TESTLOGS="$TESTLOGS $H_TARGET/libgomp/testsuite/libgomp.sum"
fi
# Test the just-built GCC with the GDB testsuite.
if [ -d $GDB_TESTSUITE ] ; then
mkdir test-gdb || exit 1