diff options
author | Albert Cheng <acheng@hdfgroup.org> | 1999-05-28 22:07:42 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 1999-05-28 22:07:42 (GMT) |
commit | b48d0a56eec1596dc444e28ebed5331a5911d54e (patch) | |
tree | e681a3f98b636222d02a518a53d92a8722eb33d0 /config/conclude.in | |
parent | bad98b702872901830f9e67be7861bec8e7f68d8 (diff) | |
download | hdf5-b48d0a56eec1596dc444e28ebed5331a5911d54e.zip hdf5-b48d0a56eec1596dc444e28ebed5331a5911d54e.tar.gz hdf5-b48d0a56eec1596dc444e28ebed5331a5911d54e.tar.bz2 |
[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.
Diffstat (limited to 'config/conclude.in')
-rw-r--r-- | config/conclude.in | 3 |
1 files changed, 2 insertions, 1 deletions
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; \ |