summaryrefslogtreecommitdiff
path: root/common/tests/Makefile
diff options
context:
space:
mode:
authorschodet2007-06-19 15:13:15 +0000
committerschodet2007-06-19 15:13:15 +0000
commit1ad87c9c251531e1605144fa8482a52f59941695 (patch)
tree1a220cf02c126970d4fea89d28565b7fecc7fc85 /common/tests/Makefile
parent9567d583f7b6dacc4027402059fa2457f3766d8b (diff)
Display more interessting results.
git-svn-id: svn+ssh://pessac/svn/cesar/trunk@332 017c9cb6-072f-447c-8318-d5b54f68fe89
Diffstat (limited to 'common/tests/Makefile')
-rw-r--r--common/tests/Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/common/tests/Makefile b/common/tests/Makefile
index 753a038c63..3aaaa55beb 100644
--- a/common/tests/Makefile
+++ b/common/tests/Makefile
@@ -1,12 +1,12 @@
BASE = ../..
RUN_TEST = run-test.pl
-all: tests.all.brief
+all: tests.all.brief tests.all.result
.PHONY: tests.all
tests.all: tests $(RUN_TEST)
- perl $(RUN_TEST) $(BASE) < $< > $@ 2>&1
+ -perl $(RUN_TEST) $(BASE) < $< > $@ 2>&1
clean: tests.clean
rm -f tests.all.brief tests.all tests.clean
@@ -18,3 +18,6 @@ tests.clean: tests $(RUN_TEST)
%.brief: %
grep '^==' < $< > $@
+
+%.result: %.brief
+ grep '^===' < $<