From b48d0a56eec1596dc444e28ebed5331a5911d54e Mon Sep 17 00:00:00 2001 From: Albert Cheng Date: Fri, 28 May 1999 17:07:42 -0500 Subject: [svn-r1289] Removed RUNTEST before the /bin/sh because all the systems that is known so far do not need a "launching command" to run shell script. (If a future system needs it, maybe we should use a new VARIABLE called RUNSHELL, default to /bin/sh, to do the launching.) Then inside the test shell script, it needs to know how to launch serial or parallel executions. So, pass the RUNSERIAL and RUNPARALLEL variables to the /bin/sh command. --- config/conclude.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config/conclude.in b/config/conclude.in index 00c8172..d12b848 100644 --- a/config/conclude.in +++ b/config/conclude.in @@ -37,8 +37,9 @@ check test _test: tests echo "============================"; \ echo "Testing $$test $(TEST_FLAGS)"; \ echo "============================"; \ + RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ srcdir=$(srcdir) \ - $(RUNTEST) /bin/sh $$test $(TEST_FLAGS) || \ + /bin/sh $$test $(TEST_FLAGS) || \ exit 1; \ echo ""; \ fi; \ -- cgit v0.12