diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2001-02-06 17:48:21 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2001-02-06 17:48:21 (GMT) |
commit | 637d7f4ce1a4a5857be7cadd6924238732f75245 (patch) | |
tree | 0f2951a1a7e8100927965a31eaecfe5ab95666a4 /bin/runtest | |
parent | 60843975329ccccea6f3857164fde56328c65383 (diff) | |
download | hdf5-637d7f4ce1a4a5857be7cadd6924238732f75245.zip hdf5-637d7f4ce1a4a5857be7cadd6924238732f75245.tar.gz hdf5-637d7f4ce1a4a5857be7cadd6924238732f75245.tar.bz2 |
[svn-r3369] Purpose:
Bug fix (feature)
Description:
It did not recognize the op-configure keyword as a possible
type of test.
Solution:
Added the feature to handle op-configure.
Platforms tested:
Linux, freebsd.
Diffstat (limited to 'bin/runtest')
-rwxr-xr-x | bin/runtest | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bin/runtest b/bin/runtest index c582b25..3aef6e2 100755 --- a/bin/runtest +++ b/bin/runtest @@ -220,6 +220,11 @@ RUNSNAPTEST() standard) # standard test shift ;; + op-configure) + # option for configure + SNAPCMD_OPT="$SNAPCMD_OPT $1 $2" + shift; shift + ;; *) # unknown test echo "$0: unknown type of test ($1)" retcode=1 |