소스 검색

Redirect compiler output in combined testcases

Taddeus Kroes 10 년 전
부모
커밋
c1d19a208f
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  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