summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile.am7
-rwxr-xr-xtest/mkmondo.sh7
2 files changed, 7 insertions, 7 deletions
diff --git a/Makefile.am b/Makefile.am
index 3a39bd7d..cdc7d4b3 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -380,6 +380,13 @@ ConfirmTests_SOURCES = test/ConfirmTests.py
EXTRA_DIST += test/input
+test/input/mondo.dat: test/input/standard.dat
+ @for i in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 ; do \
+ for j in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 ; do \
+ cat $< >> $@; \
+ done; \
+ done
+
ConfirmTests: $(srcdir)/test/ConfirmTests.py
echo "$(PYTHON) $(srcdir)/test/ConfirmTests.py $(top_builddir)/ledger$(EXEEXT) $(srcdir)/test/input \"\$$@\"" > $@
chmod 755 $@
diff --git a/test/mkmondo.sh b/test/mkmondo.sh
deleted file mode 100755
index bf0e965c..00000000
--- a/test/mkmondo.sh
+++ /dev/null
@@ -1,7 +0,0 @@
-#!/bin/sh
-
-if [ ! -f tools/mondo.dat ]; then
- for i in $(seq 1 250) ; do
- cat tools/standard.dat >> tools/mondo.dat
- done
-fi