テストを、MacやCygwinでも成功するように修正
authorj8takagi <j8takagi@nifty.com>
Thu, 25 Mar 2010 14:54:24 +0000 (23:54 +0900)
committerj8takagi <j8takagi@nifty.com>
Thu, 25 Mar 2010 14:54:24 +0000 (23:54 +0900)
test/integration/casl2/TEST.mk
test/integration/casl2/opt_opterr/Makefile

index ed67014..c7add99 100644 (file)
@@ -4,7 +4,6 @@
 # make prepare : CMDで設定されたコマンドを実行した出力結果を0.txt(テストの想定結果)に出力
 # make clean   : 「make」で生成されたファイルをクリア
 # make cleanall: 「make」と「make clean」で生成されたファイルをクリア
-ERRFILE = err.txt
 UNITNAME = `pwd | xargs basename`
 
 .PHPNY: check prepare clean cleanall
@@ -14,10 +13,12 @@ clean:
        @rm -f 1.txt diff.txt report.txt err.txt
 cleanall: clean
        @rm -f 0.txt
-0.txt 1.txt:: $(CASL2) $(ASFILE)
+ifndef SETBYOTHER
+0.txt 1.txt: $(CASL2) $(ASFILE)
        @echo $(CMD) >$@; \
-     $(CMD) >>$@ 2>$(ERRFILE); \
-     if test -s $(ERRFILE); then cat err.txt >>$@; else rm -f $(ERRFILE); fi
+     $(CMD) >>$@ 2>err.txt; \
+     if test -s err.txt; then cat err.txt >>$@; else rm -f err.txt; fi
+endif
 diff.txt: 1.txt
        @-diff -c 0.txt 1.txt >$@ 2>&1
 report.txt: diff.txt
index 5d0a565..87c8b6a 100644 (file)
@@ -2,7 +2,9 @@
 include ../CMD.mk               # YACASL2DIR, CASL2
 include ../opt_s/CMD.mk         # ASDIR, ASFILE
 CASL2FLAG = -z
+SETBYOTHER = 0
 CMD = $(CASL2) $(CASL2FLAG) $(ASFILE)
 include ../TEST.mk
-0.txt 1.txt:: $(CASL2) $(ASFILE)
-       @if test -s $(ERRFILE); then tail -1 err.txt >$@; else rm -f $(ERRFILE); fi
+0.txt 1.txt: $(CASL2) $(ASFILE)
+       @$(CMD) >>$@ 2>err.txt; \
+     if test -s err.txt; then tail -1 err.txt >>$@; else rm -f err.txt; fi