Changeset 1391 for branches/GNU/src/gcc/contrib/regression
- Timestamp:
- Apr 27, 2004, 8:39:34 PM (21 years ago)
- Location:
- branches/GNU/src/gcc
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/gcc
- Property svn:ignore
-
old new 26 26 configure.vr 27 27 configure.vrs 28 dir.info 28 29 Makefile 29 dir.info30 30 lost+found 31 31 update.out
-
- Property svn:ignore
-
branches/GNU/src/gcc/contrib/regression/ChangeLog
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.1.1.2
r1390 r1391 1 200 3-02-05Release Manager1 2004-02-14 Release Manager 2 2 3 * GCC 3. 2.2Released.3 * GCC 3.3.3 Released. 4 4 5 200 2-11-19Release Manager5 2003-10-16 Release Manager 6 6 7 * GCC 3. 2.1Released.7 * GCC 3.3.2 Released. 8 8 9 200 2-11-19Release Manager9 2003-08-04 Release Manager 10 10 11 * GCC 3. 2.1 Released.11 * GCC 3.3.1 Released. 12 12 13 200 2-11-18Release Manager13 2003-08-04 Release Manager 14 14 15 * GCC 3. 2.1 Released.15 * GCC 3.3.1 Released. 16 16 17 200 2-08-14Release Manager17 2003-05-13 Release Manager 18 18 19 * GCC 3. 2Released.19 * GCC 3.3 Released. 20 20 21 200 2-07-25Release Manager21 2003-05-13 Release Manager 22 22 23 * GCC 3. 1.1Released.23 * GCC 3.3 Released. 24 24 25 200 2-05-14Release Manager25 2003-05-13 Release Manager 26 26 27 * GCC 3. 1Released.27 * GCC 3.3 Released. 28 28 29 200 2-05-14Release Manager29 2003-05-13 Release Manager 30 30 31 * GCC 3.1 Released. 31 * GCC 3.3 Released. 32 33 2002-10-22 Geoffrey Keating <geoffk@apple.com> 34 35 * btest-gcc.sh: Add gdb.sum to TESTLOGS only when GDB testsuite is run. 36 37 2002-10-11 Geoffrey Keating <geoffk@apple.com> 38 39 * objs-gcc.sh: Don't install GDB testsuite if GDB was not built. 40 * btest-gcc.sh: Don't run GDB testsuite if it doesn't exist. 41 42 2002-10-09 Phil Edwards <pme@gcc.gnu.org> 43 44 * btest-gcc.sh, objs-gcc.sh: Update TARGET comments. 45 46 2002-10-09 Geoffrey Keating <geoffk@apple.com> 47 48 * objs-gcc.sh: On (non-linux) native hosts, use 'make bootstrap'. 49 50 2002-03-09 Geoffrey Keating <geoffk@redhat.com> 51 52 * btest-gcc.sh: For crosses, assume newlib and GNU binutils. 53 * site.exp: Correct mips-elf triplet. 32 54 33 55 2002-01-31 Geoffrey Keating <geoffk@redhat.com> -
Property cvs2svn:cvs-rev
changed from
-
branches/GNU/src/gcc/contrib/regression/btest-gcc.sh
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.1.1.2
r1390 r1391 20 20 # INPUT: 21 21 # btest <target> <source> <prefix> <state> <build> 22 # TARGET is the target triplet. It should be the same one 23 # as used in constructing PREFIX. 22 # TARGET is the target triplet. It should be the same one as used in 23 # constructing PREFIX. Or it can be the keyword 'native', indicating 24 # a target of whatever platform the script is running on. 24 25 TARGET=$1 25 26 # SOURCE is the directory containing the toplevel configure. … … 99 100 gcc/testsuite/g++.sum 100 101 gcc/testsuite/g77.sum 101 gcc/testsuite/objc.sum 102 test-gdb/gdb.sum" 102 gcc/testsuite/objc.sum" 103 103 # $H_TARGET/libstdc++-v3/testsuite/libstdc++-v3.sum 104 104 105 105 # Build. 106 106 echo build > $RESULT 107 $SOURCE/configure --prefix=$PREFIX --target=$H_TARGET || exit 1108 107 if [ $H_HOST = $H_TARGET ] ; then 108 $SOURCE/configure --prefix=$PREFIX --target=$H_TARGET || exit 1 109 109 if ! make bootstrap ; then 110 110 [ -s gcc/.bad_compare ] || exit 1 … … 113 113 fi 114 114 else 115 $SOURCE/configure --prefix=$PREFIX --target=$H_TARGET \ 116 --with-gnu-ld --with-gnu-as --with-newlib || exit 1 115 117 make || exit 1 116 118 fi … … 124 126 125 127 # Test the just-built GCC with the GDB testsuite. 126 mkdir test-gdb || exit 1 127 cd $GDB_TESTSUITE || exit 1 128 for i in gdb.* ; do 129 if [ -d $i ] ; then 130 mkdir $BUILD/test-gdb/$i 131 fi 132 done 133 cd $BUILD/test-gdb || exit 1 134 echo "set host_alias $H_HOST" > site.exp 135 echo "set host_triplet $H_HOST" >> site.exp 136 echo "set target_alias $H_TARGET" >> site.exp 137 echo "set target_triplet $H_REAL_TARGET" >> site.exp 138 echo "set build_alias $H_BUILD" >> site.exp 139 echo "set build_triplet $H_BUILD" >> site.exp 140 echo "set srcdir $GDB_TESTSUITE" >> site.exp 141 runtest --tool gdb 128 if [ -d $GDB_TESTSUITE ] ; then 129 mkdir test-gdb || exit 1 130 cd $GDB_TESTSUITE || exit 1 131 for i in gdb.* ; do 132 if [ -d $i ] ; then 133 mkdir $BUILD/test-gdb/$i 134 fi 135 done 136 cd $BUILD/test-gdb || exit 1 137 echo "set host_alias $H_HOST" > site.exp 138 echo "set host_triplet $H_HOST" >> site.exp 139 echo "set target_alias $H_TARGET" >> site.exp 140 echo "set target_triplet $H_REAL_TARGET" >> site.exp 141 echo "set build_alias $H_BUILD" >> site.exp 142 echo "set build_triplet $H_BUILD" >> site.exp 143 echo "set srcdir $GDB_TESTSUITE" >> site.exp 144 runtest --tool gdb 145 TESTLOGS="$TESTLOGS test-gdb/gdb.sum" 146 fi 142 147 143 148 # Sanity-check the testlogs. They should contain at least one PASS. -
Property cvs2svn:cvs-rev
changed from
-
branches/GNU/src/gcc/contrib/regression/objs-gcc.sh
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.1.1.2
r1390 r1391 20 20 # INPUT: 21 21 # btest <target> <source> <prefix> <state> <build> 22 # TARGET is the target triplet. It should be the same one 23 # as used in constructing PREFIX. 22 # TARGET is the target triplet. It should be the same one as used in 23 # constructing PREFIX. Or it can be the keyword 'native', indicating 24 # a target of whatever platform the script is running on. 24 25 TARGET=$1 25 26 # SOURCE is the directory containing the toplevel configure. … … 105 106 make all-gdb all-dejagnu all-ld || exit 1 106 107 make install-gdb install-dejagnu install-ld || exit 1 108 elif [ $H_REAL_TARGET = $H_REAL_HOST ] ; then 109 make bootstrap || exit 1 110 make install || exit 1 107 111 else 108 112 make || exit 1 … … 110 114 fi 111 115 112 mkdir -p $PREFIX/share/gdb-testsuite || exit 1 113 cd $SOURCE/gdb/testsuite || exit 1 114 find . -print | cpio -pdmu $PREFIX/share/gdb-testsuite || exit 1 115 # selftest.exp requires keeping old sources around, which is impractical 116 rm $PREFIX/share/gdb-testsuite/gdb.base/selftest.exp 117 # these tests seem to be broken and randomly failing 118 rm -r $PREFIX/share/gdb-testsuite/gdb.mi 116 if [ -x $PREFIX/bin/$TARGET-gdb ] ; then 117 mkdir -p $PREFIX/share/gdb-testsuite || exit 1 118 cd $SOURCE/gdb/testsuite || exit 1 119 find . -print | cpio -pdmu $PREFIX/share/gdb-testsuite || exit 1 120 # selftest.exp requires keeping old sources around, which is impractical 121 rm $PREFIX/share/gdb-testsuite/gdb.base/selftest.exp 122 # these tests seem to be broken and randomly failing 123 rm -r $PREFIX/share/gdb-testsuite/gdb.mi 124 fi 119 125 120 126 echo pass > $RESULT -
Property cvs2svn:cvs-rev
changed from
-
branches/GNU/src/gcc/contrib/regression/site.exp
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.1.1.2
r1390 r1391 9 9 # } 10 10 } 11 { "mips -elf" } {11 { "mips*-*-elf" } { 12 12 set target_list { "mips-sim" } 13 13 } -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.