projects
/
mmh
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6749991
)
Always run setup-test from make test/runalltests, just in case the test build directo...
author
David Levine
<levinedl@acm.org>
Thu, 9 Feb 2012 03:41:48 +0000
(21:41 -0600)
committer
David Levine
<levinedl@acm.org>
Thu, 9 Feb 2012 03:41:48 +0000
(21:41 -0600)
Makefile.am
patch
|
blob
|
history
test/runalltests
patch
|
blob
|
history
diff --git
a/Makefile.am
b/Makefile.am
index
ee9b511
..
42e71fe
100644
(file)
--- a/
Makefile.am
+++ b/
Makefile.am
@@
-500,7
+500,6
@@
man/man.sed: Makefile
$(SED) -f man/man.sed $< > $@
test: all
- @test -d $(testdir)/testinstall || $(testdir)/setup-test
@$(testdir)/runalltests
.PHONY: test
diff --git
a/test/runalltests
b/test/runalltests
index
340be0a
..
48ba7f1
100755
(executable)
--- a/
test/runalltests
+++ b/
test/runalltests
@@
-1,12
+1,13
@@
#!/bin/sh
-status=0
-
# Get full pathnames that we'll need.
cd `dirname $0`
testdir=`pwd`
-test -d testinstall || ./setup-test
+# Always run setup-test in case the code or configuration has changed.
+./setup-test
+
+status=0
# Note that we ignore *~ files as these are probably editor backups.
for i in `find . -name 'test-*[!~]' -type f`