diff options
author | Elena Pourmal <epourmal@hdfgroup.org> | 2008-01-10 17:59:00 (GMT) |
---|---|---|
committer | Elena Pourmal <epourmal@hdfgroup.org> | 2008-01-10 17:59:00 (GMT) |
commit | 3c27797b2143ebbe1a9d4ba8a1cd5c420a2888d3 (patch) | |
tree | 30167c704e49ff63bd2ce1813bef3bd828bb7f9d /vms/tools/h5repack | |
parent | 905ff444f4237c9d5d1923f3efe9234072450895 (diff) | |
download | hdf5-3c27797b2143ebbe1a9d4ba8a1cd5c420a2888d3.zip hdf5-3c27797b2143ebbe1a9d4ba8a1cd5c420a2888d3.tar.gz hdf5-3c27797b2143ebbe1a9d4ba8a1cd5c420a2888d3.tar.bz2 |
[svn-r14394] Maintenance on VMS: cleaned up the scripts to avoid the annoying warning messages
and to delete temporary files
Platforms tested: VMS server
Diffstat (limited to 'vms/tools/h5repack')
-rw-r--r-- | vms/tools/h5repack/check_h5repack.com | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/vms/tools/h5repack/check_h5repack.com b/vms/tools/h5repack/check_h5repack.com index bacf767..1dcbc78 100644 --- a/vms/tools/h5repack/check_h5repack.com +++ b/vms/tools/h5repack/check_h5repack.com @@ -143,9 +143,6 @@ $ CALL TOOLTEST "-l dset_chunk:"""CONTI"""" h5repack_layout.h5 $ CALL TOOLTEST "-l dset_chunk:"""CHUNK"""=18x13" h5repack_layout.h5 $! $! -$ if F$SEARCH("*.h5repackerr;*") then del *.h5repackerr;* -$ if F$SEARCH("*.h5repackout;*") then del *.h5repackout;* -$ if F$SEARCH("*_out.h5;*") then del *_out.h5;* $! $TOOLTEST: SUBROUTINE @@ -182,6 +179,15 @@ $ ! $ write sys$output line $ ! $ ! +$ ! +$ ! Cleanup temporary files +$ ! +$ if F$SEARCH(output_err) .NES. "" +$ then +$ del *.h5repackerr;* +$ endif +$ del *.h5repackout;* +$ del *_out.h5;* $ENDSUBROUTINE |