]> arthur.barton.de Git - bup.git/commitdiff
runtests: Apparently $(wildcard) in make doesn't always sort its output. bup-0.22
authorAvery Pennarun <apenwarr@gmail.com>
Tue, 1 Feb 2011 10:04:53 +0000 (02:04 -0800)
committerAvery Pennarun <apenwarr@gmail.com>
Tue, 1 Feb 2011 10:04:53 +0000 (02:04 -0800)
This meant that on Solaris, tests would be run in a different order, so that
BUP_MAIN_EXTRA (set in tclient.py) wouldn't be set the same as on Linux.

In this case, we know the wildcard will always match something anyway, so we
might as well just let the shell expand it out rather than asking make to do
it.

Signed-off-by: Avery Pennarun <apenwarr@gmail.com>
Makefile

index 3194a06dde72d05d7293b8fb10caacb3af02c7ae..d18e2ed889eb780cd48b33c253414623c09d6a55 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -83,7 +83,7 @@ lib/bup/_version.py:
 runtests: all runtests-python runtests-cmdline
 
 runtests-python:
-       $(PYTHON) wvtest.py $(wildcard t/t*.py lib/*/t/t*.py)
+       $(PYTHON) wvtest.py t/t*.py lib/*/t/t*.py
 
 runtests-cmdline: all
        t/test.sh