diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2018-11-29 01:07:30 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2018-11-29 01:07:30 (GMT) |
commit | d442fe2d9815a83f5010cca9a878974e286c27f9 (patch) | |
tree | ce32b6875ad90d309f81844eaeb20c4a4860025c /bin | |
parent | 6eabeabdaa77642fd4db5fd234ccc756a24125be (diff) | |
download | hdf5-d442fe2d9815a83f5010cca9a878974e286c27f9.zip hdf5-d442fe2d9815a83f5010cca9a878974e286c27f9.tar.gz hdf5-d442fe2d9815a83f5010cca9a878974e286c27f9.tar.bz2 |
Add support for "make check-vol", along with a few minor cleanups, etc.
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/makehelp | 1 | ||||
-rwxr-xr-x | bin/snapshot | 6 |
2 files changed, 7 insertions, 0 deletions
diff --git a/bin/makehelp b/bin/makehelp index d6fbda2..4707397 100755 --- a/bin/makehelp +++ b/bin/makehelp @@ -40,6 +40,7 @@ make distclean: remove all files generated by make, make check, or make check-p: Only run parallel tests make check-s: Only run serial tests make check-vfd: Run tests with each virtual file driver +make check-vol: Run tests with each virtual object layer connector HDF5 uses Automake, so any standard Automake targets not listed here should also work. diff --git a/bin/snapshot b/bin/snapshot index 5c78fc8..5900728 100755 --- a/bin/snapshot +++ b/bin/snapshot @@ -132,6 +132,7 @@ DISPLAYUSAGE() Usage: $PROGNAME [all] [checkout] [ftp <URL> [diff] [test] [srcdir] [release] [help] [clean] [distclean] [echo] [deploy <dir>] [deploydir <dir>] [zlib <zlib_path>] [releasedir <dir>] [srcdirname <dir>] [check-vfd] + [check-vol] [exec <command>] [module-load <module-list>] [op-configure <option>] [--<option>] all: Run all commands (checkout, test & release) @@ -169,6 +170,8 @@ Usage: $PROGNAME [all] [checkout] [ftp <URL> [diff] [test] [srcdir] [release] [h [Default is $ReleaseDir_default] check-vfd: Run make check-vfd instead of just make check. + check-vol: + Run make check-vol instead of just make check. exttest <testscript>; Run testscript; exec <command>: @@ -422,6 +425,9 @@ while [ $# -gt 0 ] ; do check-vfd) CHECKVAL=check-vfd ;; + check-vol) + CHECKVAL=check-vol + ;; module-load) shift if [ $# -lt 1 ]; then |