summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2009-03-10 19:30:13 -0400
committerJohn Wiegley <johnw@newartisans.com>2009-03-10 19:30:13 -0400
commit1b4ce1b0b9c9ff81bbb03ff9f2df8c0f3ce0142e (patch)
treed5228787471aa50a76edc9959ebecbd1169b8d56
parentf20a644c98de8e8f663b692cab12416dca8d0faa (diff)
downloadledger-1b4ce1b0b9c9ff81bbb03ff9f2df8c0f3ce0142e.tar.gz
ledger-1b4ce1b0b9c9ff81bbb03ff9f2df8c0f3ce0142e.tar.bz2
ledger-1b4ce1b0b9c9ff81bbb03ff9f2df8c0f3ce0142e.zip
Added make rule to build mondo.dat
-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