Procházet zdrojové kódy

Redirect compiler output in combined testcases

Taddeus Kroes před 10 roky
rodič
revize
c1d19a208f
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. 2 2
      test/run.bash

+ 2 - 2
test/run.bash

@@ -72,8 +72,8 @@ function check_combined {
         ofile=${file%.*}.o
         ofiles="$ofiles $ofile"
 
-        if $CIVCC $CGLAGS -o $asfile $file &&
-           $CIVAS -o $ofile $asfile
+        if $CIVCC $CGLAGS -o $asfile $file > /dev/null 2>&1 &&
+           $CIVAS -o $ofile $asfile 2>&1
         then
             compiled_files="$compiled_files `basename $file`"
         else