소스 검색

Indent fix

Taddeus Kroes 12 년 전
부모
커밋
7de2d1eb90
1개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 4 4
      test/run.bash

+ 4 - 4
test/run.bash

@@ -29,10 +29,10 @@ function check_output {
     printf "%-${ALIGN}s " $file:
 
     if $CIVCC $CGLAGS -o tmp.s $file > tmp.out 2>&1 &&
-    $CIVAS tmp.s -o tmp.o > tmp.out 2>&1 &&
-    $CIVVM tmp.o > tmp.out 2>&1 &&
-    mv tmp.out tmp.res &&
-    diff tmp.res $expect_file --side-by-side --ignore-space-change > tmp.out 2>&1
+       $CIVAS tmp.s -o tmp.o > tmp.out 2>&1 &&
+       $CIVVM tmp.o > tmp.out 2>&1 &&
+       mv tmp.out tmp.res &&
+       diff tmp.res $expect_file --side-by-side --ignore-space-change > tmp.out 2>&1
     then
         echo_success
     else