diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2005-07-07 21:28:59 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2005-07-07 21:28:59 (GMT) |
commit | 9f37f39b24d23e8960b0dc7745fcbe3613292caa (patch) | |
tree | 9d4e5d3dfb08cb0751626487842eb89ab6db6fa9 /test | |
parent | 81bf322285e173262e3f0b4059469adda2b3e162 (diff) | |
download | hdf5-9f37f39b24d23e8960b0dc7745fcbe3613292caa.zip hdf5-9f37f39b24d23e8960b0dc7745fcbe3613292caa.tar.gz hdf5-9f37f39b24d23e8960b0dc7745fcbe3613292caa.tar.bz2 |
[svn-r11047] Purpose:
Bug fix
Description:
Add dependency of flush2 test on flush1 test
Platforms tested:
FreeBSD 4.11 (sleipnir)
Too minor to require h5committest
Diffstat (limited to 'test')
-rw-r--r-- | test/Makefile.am | 3 | ||||
-rw-r--r-- | test/Makefile.in | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/test/Makefile.am b/test/Makefile.am index 55e6537..eb53695 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -71,6 +71,9 @@ timings _timings: testmeta done; +# The flush1 test must run before the flush2 test +flush2.chkexe_: flush1.chkexe_ + # Temporary files. These files are the ones created by setting the # HDF5_NOCLEANUP environment variable and running `make test' without # specifying a file prefix or low-level driver. Changing the file diff --git a/test/Makefile.in b/test/Makefile.in index 21a3ae4..54ec422 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -1040,6 +1040,9 @@ timings _timings: testmeta fi; \ done; +# The flush1 test must run before the flush2 test +flush2.chkexe_: flush1.chkexe_ + # lib/progs/tests targets recurse into subdirectories. build-* targets # build files in this directory. build-lib: $(LIB) |