diff options
author | Elena Pourmal <epourmal@hdfgroup.org> | 2008-01-09 22:27:55 (GMT) |
---|---|---|
committer | Elena Pourmal <epourmal@hdfgroup.org> | 2008-01-09 22:27:55 (GMT) |
commit | e982a364fecc22652b73ef789f073bd6a617ec26 (patch) | |
tree | 2287e0f1be4b376ddb85843f99fe978ea24bf2e2 /vms/tools/h5diff | |
parent | 0545c915c368b69e613b4b86108ad0b1d644b3d4 (diff) | |
download | hdf5-e982a364fecc22652b73ef789f073bd6a617ec26.zip hdf5-e982a364fecc22652b73ef789f073bd6a617ec26.tar.gz hdf5-e982a364fecc22652b73ef789f073bd6a617ec26.tar.bz2 |
[svn-r14390] Maintenance for VMS system before the final release:
Updated utilities test scripts to make output more legible; fixed some typos.
Added four new expected output files to avoid false negative reports
for the h5dump tests (for ones that expect to have error report in them).
Updated MANIFEST to reflect the changes.
Platforms tested:
VMS server (more testing is on the way)
Diffstat (limited to 'vms/tools/h5diff')
-rw-r--r-- | vms/tools/h5diff/check_h5diff.com | 18 | ||||
-rw-r--r-- | vms/tools/h5diff/make.com | 12 |
2 files changed, 19 insertions, 11 deletions
diff --git a/vms/tools/h5diff/check_h5diff.com b/vms/tools/h5diff/check_h5diff.com index b2b5782..a66d1d6 100644 --- a/vms/tools/h5diff/check_h5diff.com +++ b/vms/tools/h5diff/check_h5diff.com @@ -18,6 +18,12 @@ $ ! This command file tests h5diff utility. The command file has to $ ! run in the [hdf5-top.tools.testfiles] directory. $ ! $ ! +$ type sys$input + +=================================== + Testing h5diff utiltity +=================================== + $ ! Define h5diff symbol $ ! $! set message/notext/nofacility/noidentification/noseverity @@ -280,8 +286,8 @@ $TOOLTEST: SUBROUTINE $ $ len = F$LENGTH(P1) $ base = F$EXTRACT(0,len-2,P1) -$ actual = base + "out" -$ actual_err = base + "err" +$ actual = base + "h5diffout" +$ actual_err = base + "h5differr" $ $ begin = "Testing h5diff " $ ! @@ -300,7 +306,7 @@ $ if F$SEARCH(actual_err) .NES. "" $ then $ set message/notext/nofacility/noidentification/noseverity $ append 'actual_err' 'actual' -$ set message/ntext/facility/identification/severity +$ set message/text/facility/identification/severity $ endif $ ! $ ! Compare the results @@ -334,8 +340,10 @@ $ append 'actual' h5diff_output.txt $ ! $ ! Delete temporary files $ ! -$! del *.out;* -$! del *.dif;* +$ if F$SEARCH("*.h5differr;*") then del *.h5diffterr;* +$ if F$SEARCH("*.h5diffout;*") then del *.h5difftout;* +$ if F$SEARCH("*.dif;*") then del *.dif;* +$ del *.dif;* $ ! $ENDSUBROUTINE diff --git a/vms/tools/h5diff/make.com b/vms/tools/h5diff/make.com index d09c474..9c69c85 100644 --- a/vms/tools/h5diff/make.com +++ b/vms/tools/h5diff/make.com @@ -19,27 +19,27 @@ $! $! ccopt = "/float=ieee_float" $ $ ccc := cc 'ccopt /include=([-.-.src], [-.lib]) -$ type sys$input - Creating h5diff $! $ cobj= "h5diff_main, h5diff_common, h5diffgentest" $! $ ccc 'cobj $ type sys$input - Creating h5diffgentest + Creating h5diffgentest ... $ link/exe=h5diffgentest.exe - h5diffgentest, - [-.lib]libh5tools.olb/lib,[-.-.src]hdf5.olb/lib,zlib_dir:libz.olb/lib $ type sys$input - Created h5difftest + Finished h5difftest + $ $ type sys$input - Creating h5diff + Creating h5diff ... $ link/exe=h5diff.exe - h5diff_main, h5diff_common, - [-.lib]libh5tools.olb/lib,[-.-.src]hdf5.olb/lib,zlib_dir:libz.olb/lib $ type sys$input - Created h5diff + Finished h5diff + $! $ exit |