X-Git-Url: http://j8takagi.net/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=test%2Fintegration%2Fcasl2%2FMakefile;h=05bb87a06d4b1de4b4ea39fc796d3895c3cb5b1c;hb=fb893cf9b40d141a0d66f131dba3e0fef28549ab;hp=9f9f2de4898b1723eb4c94c51b55deb13f7684cc;hpb=350188e12a316928e5b2d8473f580528b2780d8b;p=YACASL2.git diff --git a/test/integration/casl2/Makefile b/test/integration/casl2/Makefile index 9f9f2de..05bb87a 100644 --- a/test/integration/casl2/Makefile +++ b/test/integration/casl2/Makefile @@ -7,7 +7,7 @@ # make prepare : すべてのテストの、想定結果を出力 # make create : UNITNAMEで指定されたテストを新規に作成 TESTS = `ls | grep "^[^A-Z].*"` -LOGFILE = TEST.log +LOGFILE = Test.log .PHONY: all check report clean cleanall prepare create all: check report @@ -18,7 +18,7 @@ check: done $(LOGFILE): @for target in $(TESTS); do \ - cat <$$target/report.txt >>$(LOGFILE); \ + cat <$$target/report.txt >>$(LOGFILE) || echo $$target ": no report" >>$(LOGFILE); \ done report: $(LOGFILE) @success=`grep "Success" $(LOGFILE) | wc -l`; \ @@ -26,8 +26,6 @@ report: $(LOGFILE) echo "$$success / $$all tests passed. Details in `pwd`/$(LOGFILE)"; \ if test $$success -eq $$all; then \ echo "All tests are succeded."; \ - else \ - grep "Failure" $(LOGFILE); \ fi clean: @for target in $(TESTS); do $(MAKE) clean -C $$target; done