summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2010-06-10 14:47:45 -0400
committerJohn Wiegley <johnw@newartisans.com>2010-06-10 16:13:08 -0400
commit5659b6fb37b8601c39be6ecec3c8c86625686e0f (patch)
tree013bcd1cd777fd7fd32b0228ce16e42d39abfaef /tools
parent3e05dce72e35f093560ec0b5b2dc65b1bdf94267 (diff)
downloadfork-ledger-5659b6fb37b8601c39be6ecec3c8c86625686e0f.tar.gz
fork-ledger-5659b6fb37b8601c39be6ecec3c8c86625686e0f.tar.bz2
fork-ledger-5659b6fb37b8601c39be6ecec3c8c86625686e0f.zip
Run GenerateTests for 10,000 iterations in fullcheck
Diffstat (limited to 'tools')
-rw-r--r--tools/Makefile.am11
1 files changed, 6 insertions, 5 deletions
diff --git a/tools/Makefile.am b/tools/Makefile.am
index 42e6a1af..94802dbb 100644
--- a/tools/Makefile.am
+++ b/tools/Makefile.am
@@ -408,7 +408,7 @@ ConfirmTests: $(srcdir)/test/ConfirmTests.py
GenerateTests_SOURCES = test/GenerateTests.py
GenerateTests: $(srcdir)/test/GenerateTests.py
- echo "$(PYTHON) $(srcdir)/test/GenerateTests.py $(top_builddir)/ledger$(EXEEXT) $(srcdir) 1 20 \"\$$@\"" > $@
+ echo "$(PYTHON) $(srcdir)/test/GenerateTests.py $(top_builddir)/ledger$(EXEEXT) $(srcdir) 1 ${1:-20} \"\$$@\"" > $@
chmod 755 $@
FULLCHECK=$(srcdir)/test/fullcheck.sh
@@ -433,13 +433,14 @@ endif
fullcheck: cppunittests
@$(top_builddir)/RegressTests --verify
@$(top_builddir)/BaselineTests --verify
- @$(top_builddir)/ManualTests --verify
+ @$(top_builddir)/ManualTests --verify
@$(top_builddir)/ConfirmTests --verify
- @$(top_builddir)/GenerateTests --verify
+ @$(top_builddir)/GenerateTests 20 --verify
@$(top_builddir)/RegressTests --gmalloc
@$(top_builddir)/BaselineTests --gmalloc
- @$(top_builddir)/ManualTests --gmalloc
-# @$(top_builddir)/ConfirmTests --gmalloc
+ @$(top_builddir)/ManualTests --gmalloc
+ @$(top_builddir)/ConfirmTests --gmalloc
+ @$(top_builddir)/GenerateTests 10000
# @$(top_builddir)/GenerateTests --gmalloc
######################################################################