summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2009-02-03 01:08:50 -0400
committerJohn Wiegley <johnw@newartisans.com>2009-02-03 01:08:50 -0400
commitf74247d15a4daa7fe164e18f90ea31072e92472c (patch)
treeb6f6ef3259b3e82d8b4b075172e7a05584cfffcd
parent3db0accc68bdc0d62b51d2b3f3702857a99c9004 (diff)
downloadfork-ledger-f74247d15a4daa7fe164e18f90ea31072e92472c.tar.gz
fork-ledger-f74247d15a4daa7fe164e18f90ea31072e92472c.tar.bz2
fork-ledger-f74247d15a4daa7fe164e18f90ea31072e92472c.zip
For systems without cppunit, make fullcheck just does a make check.
-rw-r--r--Makefile.am5
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am
index 4048c83e..2f9eb77f 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -446,6 +446,7 @@ RegressionTests: $(srcdir)/test/regress.py
FULLCHECK=$(srcdir)/tools/fullcheck
+if HAVE_CPPUNIT
fullcheck: $(TESTS)
sh $(FULLCHECK) $(top_builddir)/util_tests$(EXEEXT) --verify
sh $(FULLCHECK) $(top_builddir)/math_tests$(EXEEXT) --verify
@@ -453,6 +454,10 @@ fullcheck: $(TESTS)
sh $(FULLCHECK) $(top_builddir)/data_tests$(EXEEXT) --verify
sh $(FULLCHECK) $(top_builddir)/parse_tests$(EXEEXT) --verify
sh $(FULLCHECK) $(top_builddir)/report_tests$(EXEEXT) --verify
+else
+fullcheck: check
+ @test 1 -eq 1
+endif
######################################################################