diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2011-03-23 16:41:44 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2011-03-23 16:41:44 (GMT) |
commit | ccaefedaf2ff94c8b64291aabbe3b90dcf3a1aaf (patch) | |
tree | 1c23b22fc52993f69114d22c0769890f653ff50e /fortran | |
parent | 2aabc3f41568a5daec0f1cae711c97a5bb82878d (diff) | |
download | hdf5-ccaefedaf2ff94c8b64291aabbe3b90dcf3a1aaf.zip hdf5-ccaefedaf2ff94c8b64291aabbe3b90dcf3a1aaf.tar.gz hdf5-ccaefedaf2ff94c8b64291aabbe3b90dcf3a1aaf.tar.bz2 |
[svn-r20301] brought revisions 19868:20300 from the 1.8.6_vms branch to the 1.8 branch
Diffstat (limited to 'fortran')
-rw-r--r-- | fortran/test/fortranlib_test.f90 | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/fortran/test/fortranlib_test.f90 b/fortran/test/fortranlib_test.f90 index 5a2db07..9f17e50 100644 --- a/fortran/test/fortranlib_test.f90 +++ b/fortran/test/fortranlib_test.f90 @@ -171,10 +171,16 @@ PROGRAM fortranlibtest CALL external_test(cleanup, ret_total_error) CALL write_test_status(ret_total_error, ' External dataset test', total_error) +!DEC$ if defined(H5_VMS) + GOTO 9 +!DEC$ else ret_total_error = 0 CALL multi_file_test(cleanup, ret_total_error) CALL write_test_status(ret_total_error, ' Multi file driver test', total_error) +!DEC$ endif +9 CONTINUE + ret_total_error = 0 CALL test_chunk_cache (cleanup, ret_total_error) CALL write_test_status(ret_total_error, ' Dataset chunk cache configuration', total_error) |