From 1eb67d0839525540b3e41b400865b8f36d3c5d31 Mon Sep 17 00:00:00 2001 From: Avery Pennarun Date: Tue, 1 Feb 2011 02:04:53 -0800 Subject: [PATCH] runtests: Apparently $(wildcard) in make doesn't always sort its output. 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 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3194a06..d18e2ed 100644 --- 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 -- 2.39.2