diff options
Diffstat (limited to 'vms/tools/h5repack')
-rw-r--r-- | vms/tools/h5repack/check_h5repack.com | 17 | ||||
-rw-r--r-- | vms/tools/h5repack/make.com | 11 |
2 files changed, 17 insertions, 11 deletions
diff --git a/vms/tools/h5repack/check_h5repack.com b/vms/tools/h5repack/check_h5repack.com index f5eadb4..bacf767 100644 --- a/vms/tools/h5repack/check_h5repack.com +++ b/vms/tools/h5repack/check_h5repack.com @@ -18,6 +18,12 @@ $ ! This command file tests h5repack utility. The command file has to $ ! run in the [hdf5-top.tools.testfiles] directory. $ ! $ ! +$ type sys$input + +=================================== + Testing h5repack utiltity +=================================== + $ ! Define h5repack and h5diff symbols $ ! $! set message/notext/nofacility/noidentification/noseverity @@ -137,16 +143,17 @@ $ CALL TOOLTEST "-l dset_chunk:"""CONTI"""" h5repack_layout.h5 $ CALL TOOLTEST "-l dset_chunk:"""CHUNK"""=18x13" h5repack_layout.h5 $! $! -$ del *_out.h5;* -$ del *.out;* -$! del *.err;* +$ 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 $ len = F$LENGTH(P2) $ base = F$EXTRACT(0,len-3,P2) $ output_file = base + "_out.h5" -$ output_err = base + ".err" -$ output_out = base + ".out" +$ output_err = base + ".h5repackerr" +$ output_out = base + ".h5repackout" $ $ begin = "Testing h5repack" $ ! diff --git a/vms/tools/h5repack/make.com b/vms/tools/h5repack/make.com index 15ff275..f9a42c4 100644 --- a/vms/tools/h5repack/make.com +++ b/vms/tools/h5repack/make.com @@ -20,7 +20,7 @@ $! ccopt = "/float=ieee_float" $ $ ccc := cc 'ccopt /include=([-.-.src], [-.lib], [-.-.test]) $ type sys$input - Creating h5repack + Creating h5repack ... $! $ cobj= " h5repack_main, h5repack, h5repack_copy, h5repack_refs," +- "h5repack_filters, h5repack_opttable, h5repack_parse, " +- @@ -28,8 +28,6 @@ $ cobj= " h5repack_main, h5repack, h5repack_copy, h5repack_refs," +- $! $ ccc 'cobj -$ type sys$input - Creating h5repack $ link/exe=h5repack.exe - h5repack_main, h5repack, h5repack_copy, h5repack_refs, h5repack_filters, - h5repack_opttable, h5repack_parse, - @@ -37,10 +35,11 @@ $ link/exe=h5repack.exe - [-.lib]libh5tools.olb/lib, - [-.-.src]hdf5.olb/lib,zlib_dir:libz.olb/lib $ type sys$input - Created h5repack + Finished h5repack + $ $ type sys$input - Creating h5repacktst + Creating h5repacktst ... $ link/exe=h5repacktst.exe - h5repacktst, - h5repack, h5repack_copy, h5repack_refs, h5repack_filters, - @@ -50,6 +49,6 @@ $ link/exe=h5repacktst.exe - [-.-.src]hdf5.olb/lib,zlib_dir:libz.olb/lib $ $ type sys$input - Created h5repacktst + Finished h5repacktst $! $ exit |