Commit ac75c44b by Laurent GUERBY Committed by Laurent Guerby

run_all.sh: Use sync when executable not present.

2005-04-18  Laurent GUERBY  <laurent@guerby.net>

	* ada/acats/run_all.sh: Use sync when executable not present.

From-SVN: r98335
parent e3df2571
2005-04-18 Laurent GUERBY <laurent@guerby.net>
* ada/acats/run_all.sh: Use sync when executable not present.
2005-04-18 Devang Patel <dpatel@apple.com> 2005-04-18 Devang Patel <dpatel@apple.com>
* gcc.dg/vect/vect-11.c: Require effective target vect_int_mult. * gcc.dg/vect/vect-11.c: Require effective target vect_int_mult.
......
...@@ -256,6 +256,9 @@ for chapter in $chapters; do ...@@ -256,6 +256,9 @@ for chapter in $chapters; do
echo "RUN $binmain" >> $dir/acats.log echo "RUN $binmain" >> $dir/acats.log
cd $dir/run 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 target_run $dir/tests/$chapter/$i/$binmain > $dir/tests/$chapter/$i/${i}.log 2>&1
cd $dir/tests/$chapter/$i cd $dir/tests/$chapter/$i
cat ${i}.log >> $dir/acats.log cat ${i}.log >> $dir/acats.log
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment