diff options
author | Elena Pourmal <epourmal@hdfgroup.org> | 2007-02-27 20:32:41 (GMT) |
---|---|---|
committer | Elena Pourmal <epourmal@hdfgroup.org> | 2007-02-27 20:32:41 (GMT) |
commit | 648aa268c83f85003ff031dd396508c9547a561e (patch) | |
tree | a122298f654b43cbb3341fd84a28f60abddb805b /test | |
parent | 465bc848feab64819cc0d4c392d457163c6eb007 (diff) | |
download | hdf5-648aa268c83f85003ff031dd396508c9547a561e.zip hdf5-648aa268c83f85003ff031dd396508c9547a561e.tar.gz hdf5-648aa268c83f85003ff031dd396508c9547a561e.tar.bz2 |
[svn-r13424] Problem:
External links test in tsohm.c tries to open a target file the second time.
Therefore it fails for VMS.
Solution:
Commented out this test for VMS system.
Platforms tested:
VMS server and kagiso
Diffstat (limited to 'test')
-rw-r--r-- | test/tsohm.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/tsohm.c b/test/tsohm.c index a8008bc..f5a6514 100644 --- a/test/tsohm.c +++ b/test/tsohm.c @@ -3375,7 +3375,12 @@ test_sohm(void) test_sohm_delete(); /* Test deleting shared messages */ test_sohm_delete_revert(); /* Test that a file with SOHMs becomes an * empty file again when they are deleted. */ +#ifndef H5_CANNOT_OPEN_TWICE /* On VMS this test fails since it tries to + open target file the second time */ test_sohm_extlink(); /* Test SOHMs when external links are used */ + +#endif /* H5_CANNOT_OPEN_TWICE */ + test_sohm_extend_dset(); /* Test extending shared datasets */ } /* test_sohm() */ |