diff options
author | Patrick Lu <ptlu@hawkwind.ncsa.uiuc.edu> | 1999-07-14 18:26:29 (GMT) |
---|---|---|
committer | Patrick Lu <ptlu@hawkwind.ncsa.uiuc.edu> | 1999-07-14 18:26:29 (GMT) |
commit | 8524d06a4b979cf47e45dd35c076c7e5fd7b1397 (patch) | |
tree | c73d28d675b98591897d01597135a8fe1908934c | |
parent | fa2fac0a6838f90dcc8ccc3ee886cecc7c8c8e4e (diff) | |
download | hdf5-8524d06a4b979cf47e45dd35c076c7e5fd7b1397.zip hdf5-8524d06a4b979cf47e45dd35c076c7e5fd7b1397.tar.gz hdf5-8524d06a4b979cf47e45dd35c076c7e5fd7b1397.tar.bz2 |
[svn-r1481] reordered the tests in the test_vltypes function.
caused some strange problems on NT. crashed if the test for the compound type
was second when called from the command line but not if i clicked on the icon.
strange but this seemed to make it better
-rw-r--r-- | test/tvltypes.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/tvltypes.c b/test/tvltypes.c index 08272f2..d29a9e9 100644 --- a/test/tvltypes.c +++ b/test/tvltypes.c @@ -301,6 +301,7 @@ test_vltypes_vlen_compound(void) ret=H5Dvlen_reclaim(tid1,sid1,xfer_pid,rdata); CHECK(ret, FAIL, "H5Dvlen_reclaim"); + /* Make certain the VL memory has been freed */ VERIFY(mem_used,0,"H5Dvlen_reclaim"); @@ -609,10 +610,9 @@ test_vltypes(void) /* These next tests use the same file */ test_vltypes_vlen_atomic(); /* Test VL atomic datatypes */ - test_vltypes_vlen_compound(); /* Test VL compound datatypes */ - test_vltypes_compound_vlen_atomic(); /* Test compound datatypes with VL atomic components */ - test_vltypes_vlen_vlen_atomic(); /* Test VL datatype with VL atomic components */ - + test_vltypes_compound_vlen_atomic(); /* Test compound datatypes with VL atomic components */ + test_vltypes_vlen_vlen_atomic(); /* Test VL datatype with VL atomic components */ + test_vltypes_vlen_compound(); /* Test VL compound datatypes */ } /* test_vltypes() */ |