テストケースの修正
[YACASL2.git] / test / integration / casl2 / TEST_O.mk
index 2d16d49..16c5a28 100644 (file)
@@ -25,8 +25,6 @@ cleanall: clean
      $(OD)  >>$@ 2>>$(ERRFILE); \
      if test -s $(ERRFILE); then cat err.txt >>$@; else rm -f $(ERRFILE); fi
 diff.txt: 1.txt
-       @-diff 0.txt 1.txt >$@ 2>&1
+       @-diff -b 0.txt 1.txt >$@ 2>&1
 report.txt: diff.txt
-       @echo -n "$(UNITNAME): Test " >$@; \
-     if test ! -s $^; then echo -n "Success " >>$@; rm -f $^; else echo -n "Failure " >>$@; fi; \
-     echo `date +"%F %T"` >>$@
+       @if test ! -s $^; then echo "$(UNITNAME): Test Success " `date +"%F %T"` >>$@; rm -f $^; else echo "$(UNITNAME): Test Failure " `date +"%F %T"` >>$@; fi; \