diff options
author | Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> | 2010-02-24 12:51:44 +0000 |
---|---|---|
committer | Rainer Orth <ro@gcc.gnu.org> | 2010-02-24 12:51:44 +0000 |
commit | 39e998c28084f75281e6d3f48ed9f47078f6ca97 (patch) | |
tree | 60b0b95a1b066a2ed63f5adfc7064bbb317add8b /gcc/testsuite/ada | |
parent | 2607480d15758c355af87430e5acd7e2df12bdf4 (diff) | |
download | gcc-39e998c28084f75281e6d3f48ed9f47078f6ca97.zip gcc-39e998c28084f75281e6d3f48ed9f47078f6ca97.tar.gz gcc-39e998c28084f75281e6d3f48ed9f47078f6ca97.tar.bz2 |
re PR testsuite/32547 (gnat.dg tasking tests fail on IRIX 5.3)
PR ada/32547
* lib/gnat-dg.exp (gnat_load): Redefine.
* ada/acats/run_acats: Run run_all.sh with $SHELL.
* ada/acats/run_all.sh: Downcase tasking not implemented message.
From-SVN: r157037
Diffstat (limited to 'gcc/testsuite/ada')
-rwxr-xr-x | gcc/testsuite/ada/acats/run_acats | 2 | ||||
-rwxr-xr-x | gcc/testsuite/ada/acats/run_all.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/ada/acats/run_acats b/gcc/testsuite/ada/acats/run_acats index 4ae25fa..3c3d8990 100755 --- a/gcc/testsuite/ada/acats/run_acats +++ b/gcc/testsuite/ada/acats/run_acats @@ -55,4 +55,4 @@ chmod +x host_gnatmake # Limit the stack to 16MB for stack checking ulimit -s 16384 -exec $testdir/run_all.sh ${1+"$@"} +exec $SHELL $testdir/run_all.sh ${1+"$@"} diff --git a/gcc/testsuite/ada/acats/run_all.sh b/gcc/testsuite/ada/acats/run_all.sh index a5e1c13..edc76f4 100755 --- a/gcc/testsuite/ada/acats/run_all.sh +++ b/gcc/testsuite/ada/acats/run_all.sh @@ -282,7 +282,7 @@ for chapter in $chapters; do cat ${i}.log >> $dir/acats.log egrep -e '(==== |\+\+\+\+ |\!\!\!\! )' ${i}.log > /dev/null 2>&1 if [ $? -ne 0 ]; then - grep 'Tasking not implemented' ${i}.log > /dev/null 2>&1 + grep 'tasking not implemented' ${i}.log > /dev/null 2>&1 if [ $? -ne 0 ]; then display "FAIL: $i" |