From: guerby Date: Mon, 18 Apr 2005 17:32:56 +0000 (+0000) Subject: 2005-04-18 Laurent GUERBY X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=58a144cb3e2ca41a71c6ddd841116a3154f9d3a7;p=thirdparty%2Fgcc.git 2005-04-18 Laurent GUERBY * ada/acats/run_all.sh: Use sync when executable not present. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@98335 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index d4697206f3fb..8ca1eb0beadd 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2005-04-18 Laurent GUERBY + + * ada/acats/run_all.sh: Use sync when executable not present. + 2005-04-18 Devang Patel * gcc.dg/vect/vect-11.c: Require effective target vect_int_mult. diff --git a/gcc/testsuite/ada/acats/run_all.sh b/gcc/testsuite/ada/acats/run_all.sh index b317aa73f4cc..402ff69cb307 100755 --- a/gcc/testsuite/ada/acats/run_all.sh +++ b/gcc/testsuite/ada/acats/run_all.sh @@ -256,6 +256,9 @@ for chapter in $chapters; do echo "RUN $binmain" >> $dir/acats.log cd $dir/run + if [ ! -x $dir/tests/$chapter/$i/$binmain ]; then + sync + fi target_run $dir/tests/$chapter/$i/$binmain > $dir/tests/$chapter/$i/${i}.log 2>&1 cd $dir/tests/$chapter/$i cat ${i}.log >> $dir/acats.log