This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

committed: add verbose output in Ada test suite driver


Tested on x86-linux
--
2004-01-13  Arnaud Charlet  <charlet@act-europe.fr>

	* ada/acats/run_all.sh: Add more verbose output in acats.log
	when compiling tests.
--
Index: run_all.sh
===================================================================
RCS file: /cvs/gcc/gcc/gcc/testsuite/ada/acats/run_all.sh,v
retrieving revision 1.11
diff -u -p -r1.11 run_all.sh
--- run_all.sh	8 Jan 2004 15:19:36 -0000	1.11
+++ run_all.sh	13 Jan 2004 10:27:15 -0000
@@ -10,7 +10,7 @@
 # gnatflags="-gnatN"
 
 gccflags=""
-gnatflags="-q -gnatws"
+gnatflags="-gnatws"
 
 target_run () {
 $*
@@ -52,6 +52,7 @@ target_gnatchop () {
 }
 
 target_gnatmake () {
+  echo gnatmake --GCC=\"$GCC\" $gnatflags $gccflags $* -largs $EXTERNAL_OBJECTS --GCC=\"$GCC\"
   gnatmake --GCC="$GCC" $gnatflags $gccflags $* -largs $EXTERNAL_OBJECTS --GCC="$GCC"
 }
 
@@ -145,8 +146,8 @@ fi
 
 target_gnatchop *.adt >> $dir/acats.log 2>&1
 
-target_gnatmake -c -gnato -gnatE *.ads > /dev/null 2>&1
-target_gnatmake -c -gnato -gnatE *.adb
+target_gnatmake -c -gnato -gnatE *.ads >> $dir/acats.log 2>&1
+target_gnatmake -c -gnato -gnatE *.adb >> $dir/acats.log 2>&1
 
 display " done."
 display ""


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]