Commit 4e81efd4 by Arnaud Charlet Committed by Arnaud Charlet

run_all.sh: Only run [a-z]* directories, to filter out e.g.

	* ada/acats/run_all.sh:
	Only run [a-z]* directories, to filter out e.g. CVS.
	Redirect build output to log file.

From-SVN: r73010
parent 1066ea4d
......@@ -3,6 +3,8 @@
* ada/acats/run_all.sh: Change output to be more compliant with
dejagnu framework.
Create acats.sum and acats.log files under testsuite/ada/acats
Only run [a-z]* directories, to filter out e.g. CVS.
Redirect build output to log file.
2003-10-27 Arnaud Charlet <charlet@act-europe.fr>
......
......@@ -141,7 +141,7 @@ display ""
display " === ACATS tests ==="
if [ $# -eq 0 ]; then
chapters=`cd $dir/tests; echo *`
chapters=`cd $dir/tests; echo [a-z]*`
else
chapters=$*
fi
......@@ -199,7 +199,7 @@ for chapter in $chapters; do
continue
fi
target_gnatmake $extraflags -I$dir/support $main
target_gnatmake $extraflags -I$dir/support $main >> $dir/acats.log 2>&1
if [ $? -ne 0 ]; then
display "FAIL: $i"
failed="${failed}${i} "
......
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