X-Git-Url: http://j8takagi.net/cgi-bin/gitweb.cgi?p=YACASL2.git;a=blobdiff_plain;f=test%2Fintegration%2Fcasl2%2FMakefile;h=1600450098e5529dbbaee068356ecd082f87e1fa;hp=9f9f2de4898b1723eb4c94c51b55deb13f7684cc;hb=fda1563ea37180835e0b9c6e7a9c7ae607895446;hpb=350188e12a316928e5b2d8473f580528b2780d8b diff --git a/test/integration/casl2/Makefile b/test/integration/casl2/Makefile index 9f9f2de..1600450 100644 --- a/test/integration/casl2/Makefile +++ b/test/integration/casl2/Makefile @@ -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