diff options
author | deva <deva> | 2009-12-17 13:34:55 +0000 |
---|---|---|
committer | deva <deva> | 2009-12-17 13:34:55 +0000 |
commit | 822b054ab20791370fc857e74fc81e4c05031285 (patch) | |
tree | d5e4f6d163777dcb38ff0a56b15847dda60e8835 /tools | |
parent | f74d220ba0723b38faeef5aeca39cd627dc3340d (diff) |
Script rearrangement + autogen hack (very ugly) to fix test bootstrap problem.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/Makefile.am.test | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tools/Makefile.am.test b/tools/Makefile.am.test new file mode 100644 index 0000000..f38f561 --- /dev/null +++ b/tools/Makefile.am.test @@ -0,0 +1,14 @@ +tests.make: ${pracrod_SOURCES} ${EXTRA_DIST} + $(top_srcdir)/../tools/testlist > Makefile.am.test + @touch Makefile.am + +test: tests.make $(TESTFILES) + @echo "All tests done." + +test_clean: + rm -f $(TESTFILES) $(TESTLOGS) + +TESTLOGS = `for F in ${TESTFILES}; do echo $$F.log; done` + +CLEANFILES = $(TESTFILES) $(TESTLOGS) tests.make *~ + |