diff options
author | John Wiegley <johnw@newartisans.com> | 2010-06-15 18:19:54 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2010-06-15 18:19:54 -0400 |
commit | 35ca4f0bb0e9f94c5627af532bd39e27f6a561db (patch) | |
tree | fc9b7b1a847114b3e255cedf656cdd0a44494256 /tools | |
parent | b6dae554fe9c39b076947a7da83a3a7b01521296 (diff) | |
download | fork-ledger-35ca4f0bb0e9f94c5627af532bd39e27f6a561db.tar.gz fork-ledger-35ca4f0bb0e9f94c5627af532bd39e27f6a561db.tar.bz2 fork-ledger-35ca4f0bb0e9f94c5627af532bd39e27f6a561db.zip |
Ensure that all options are tested and documented
Diffstat (limited to 'tools')
-rw-r--r-- | tools/Makefile.am | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/tools/Makefile.am b/tools/Makefile.am index 0dd4962c..04cec6b0 100644 --- a/tools/Makefile.am +++ b/tools/Makefile.am @@ -247,7 +247,8 @@ endif ###################################################################### -TESTS = RegressTests BaselineTests ManualTests ConfirmTests GenerateTests +TESTS = RegressTests BaselineTests ManualTests ConfirmTests \ + GenerateTests CheckTests if HAVE_CPPUNIT TESTS += \ @@ -409,6 +410,12 @@ GenerateTests: $(srcdir)/test/GenerateTests.py echo "$(PYTHON) $(srcdir)/test/GenerateTests.py -j$(JOBS) $(top_builddir)/ledger$(EXEEXT) $(srcdir) 1 ${1:-20} \"\$$@\"" > $@ chmod 755 $@ +CheckTests_SOURCES = test/CheckTests.py + +CheckTests: + echo "$(PYTHON) $(srcdir)/test/CheckTests.py $(top_builddir)/ledger$(EXEEXT) $(srcdir) \"\$$@\"" > $@ + chmod 755 $@ + FULLCHECK=$(srcdir)/test/fullcheck.sh if HAVE_CPPUNIT |