X-Git-Url: http://j8takagi.net/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=test%2Fintegration%2Fdumpword%2FMakefile;h=745a8a401d5ae508f4f96a299a4479a4777f4e5c;hb=5d1bc67b1389b89b86a98e9832b3600f8ceb26de;hp=6d8f5f7650c171719d0ebb924a8a633fb9a8d176;hpb=350188e12a316928e5b2d8473f580528b2780d8b;p=YACASL2.git diff --git a/test/integration/dumpword/Makefile b/test/integration/dumpword/Makefile index 6d8f5f7..745a8a4 100644 --- a/test/integration/dumpword/Makefile +++ b/test/integration/dumpword/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"; \ 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 \