mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
[svn-r12498] Added script to test h5ls tool on VMS system. All tests passed except for
the last one h5ls -w80 -v -S tattr2.h5 h5ls prints "native" for all types instead of the complete datatype definition. I will look into the problem next.
This commit is contained in:
parent
25842752b4
commit
c8157183b6
1
MANIFEST
1
MANIFEST
@ -1443,6 +1443,7 @@
|
||||
./vms/tools/h5dump/check.com
|
||||
./vms/tools/h5dump/check_h5dump.com
|
||||
./vms/tools/h5ls/check.com
|
||||
./vms/tools/h5ls/check_h5ls.com
|
||||
./vms/tools/h5ls/make.com
|
||||
./vms/tools/h5diff/check.com
|
||||
./vms/tools/h5diff/make.com
|
||||
|
149
vms/tools/h5ls/check_h5ls.com
Normal file
149
vms/tools/h5ls/check_h5ls.com
Normal file
@ -0,0 +1,149 @@
|
||||
$!#
|
||||
$!# Copyright by the Board of Trustees of the University of Illinois.
|
||||
$!# All rights reserved.
|
||||
$!#
|
||||
$!# This file is part of HDF5. The full HDF5 copyright notice, including
|
||||
$!# terms governing use, modification, and redistribution, is contained in
|
||||
$!# the files COPYING and Copyright.html. COPYING can be found at the root
|
||||
$!# of the source code distribution tree; Copyright.html can be found at the
|
||||
$!# root level of an installed copy of the electronic HDF5 document set and
|
||||
$!# is linked from the top-level documents page. It can also be found at
|
||||
$!# http://hdf.ncsa.uiuc.edu/HDF5/doc/Copyright.html. If you do not have
|
||||
$!# access to either file, you may request a copy from hdfhelp@ncsa.uiuc.edu.
|
||||
$!#
|
||||
$!
|
||||
$ !
|
||||
$ ! This command file tests h5ls utility. The command file has to
|
||||
$ ! run in the [hdf5-top.tools.testfiles] directory.
|
||||
$ !
|
||||
$ !
|
||||
$ ! Define h5ls symbol
|
||||
$ !
|
||||
$! set message/notext/nofacility/noidentification/noseverity
|
||||
$ current_dir = F$DIRECTRY()
|
||||
$ len = F$LENGTH(current_dir)
|
||||
$ temp = F$EXTRACT(0, len-10, current_dir)
|
||||
$ h5ls_dir = temp + "H5LS]"
|
||||
$ h5ls :== $sys$disk:'h5ls_dir'h5ls.exe
|
||||
$ !
|
||||
$ ! Define output for diff command that compares expected and actual
|
||||
$ ! outputs of h5ls
|
||||
$ !
|
||||
$ create h5ls.log
|
||||
$ !
|
||||
$ ! h5ls tests
|
||||
$ !
|
||||
$
|
||||
$ CALL TOOLTEST help-1.ls "-w80 -h"
|
||||
$ CALL TOOLTEST help-2.ls "-w80 -help"
|
||||
$ CALL TOOLTEST help-3.ls "-w80 -?"
|
||||
|
||||
$! test simple command
|
||||
$ CALL TOOLTEST tall-1.ls "-w80 tall.h5"
|
||||
$ CALL TOOLTEST tall-2.ls "-w80 -r -d tall.h5"
|
||||
$ CALL TOOLTEST tgroup.ls "-w80 tgroup.h5"
|
||||
|
||||
$! test for displaying groups
|
||||
$ CALL TOOLTEST tgroup-1.ls "-w80 -r -g tgroup.h5"
|
||||
|
||||
$! test for displaying simple space datasets
|
||||
$ CALL TOOLTEST tdset-1.ls "-w80 -r -d tdset.h5"
|
||||
|
||||
$! test for displaying soft links
|
||||
$ CALL TOOLTEST tslink-1.ls "-w80 -r tslink.h5"
|
||||
|
||||
$! tests for hard links
|
||||
$ CALL TOOLTEST thlink-1.ls "-w80 thlink.h5"
|
||||
|
||||
$! tests for compound data types
|
||||
$ CALL TOOLTEST tcomp-1.ls "-w80 -r -d tcompound.h5"
|
||||
|
||||
$!test for the nested compound type
|
||||
$ CALL TOOLTEST tnestcomp-1.ls "-w80 -r -d tnestedcomp.h5"
|
||||
|
||||
$! test for loop detection
|
||||
$ CALL TOOLTEST tloop-1.ls "-w80 -r -d tloop.h5"
|
||||
|
||||
$! test for string
|
||||
$ CALL TOOLTEST tstr-1.ls "-w80 -r -d tstr.h5"
|
||||
|
||||
$! test test file created from lib SAF team
|
||||
$ CALL TOOLTEST tsaf.ls "-w80 -r -d tsaf.h5"
|
||||
|
||||
$! test for variable length data types
|
||||
$ CALL TOOLTEST tvldtypes1.ls "-w80 -r -d tvldtypes1.h5"
|
||||
|
||||
$! test for array data types
|
||||
$ CALL TOOLTEST tarray1.ls "-w80 -r -d tarray1.h5"
|
||||
|
||||
$! test for empty data
|
||||
$ CALL TOOLTEST tempty.ls "-w80 -d tempty.h5"
|
||||
|
||||
$! test for all dataset types written to attributes
|
||||
$! enable -S for avoiding printing NATIVE types
|
||||
$ CALL TOOLTEST tattr2.ls "-w80 -v -S tattr2.h5"
|
||||
|
||||
$
|
||||
$
|
||||
$TOOLTEST: SUBROUTINE
|
||||
$
|
||||
$ len = F$LENGTH(P1)
|
||||
$ base = F$EXTRACT(0,len-2,P1)
|
||||
$ actual = base + "out"
|
||||
$ actual_err = base + "err"
|
||||
$
|
||||
$ begin = "Testing h5ls "
|
||||
$ !
|
||||
$ ! Run the test and save output in the 'actual' file
|
||||
$ !
|
||||
$ define/nolog sys$output 'actual'
|
||||
$ define/nolog sys$error 'actual_err'
|
||||
$ write sys$output "#############################"
|
||||
$ write sys$output " output for 'h5ls ''P2''"
|
||||
$ write sys$output "#############################"
|
||||
$ ON ERROR THEN CONTINUE
|
||||
$ h5ls 'P2
|
||||
$ deassign sys$output
|
||||
$ deassign sys$error
|
||||
$ if F$SEARCH(actual_err) .NES. ""
|
||||
$ then
|
||||
$ set message/notext/nofacility/noidentification/noseverity
|
||||
$ append 'actual_err' 'actual'
|
||||
$ set message/ntext/facility/identification/severity
|
||||
$ endif
|
||||
$ !
|
||||
$ ! Compare the results
|
||||
$ !
|
||||
$ diff/output=h5ls_temp/ignore=(spacing,trailing_spaces,blank_lines) 'actual' 'P1'
|
||||
$ open/read temp_out h5ls_temp.dif
|
||||
$ read temp_out record1
|
||||
$ close temp_out
|
||||
$ !
|
||||
$ ! Extract error code and format output line
|
||||
$ !
|
||||
$ len = F$LENGTH(record1)
|
||||
$ err_code = F$EXTRACT(len-1,1,record1)
|
||||
$ if err_code .eqs. "0"
|
||||
$ then
|
||||
$ result = "PASSED"
|
||||
$ line = F$FAO("!15AS !50AS !70AS", begin, P2, result)
|
||||
$ else
|
||||
$ result = "*FAILED*"
|
||||
$ line = F$FAO("!15AS !49AS !69AS", begin, P2, result)
|
||||
$ endif
|
||||
$ !
|
||||
$ ! Print test result
|
||||
$ !
|
||||
$ write sys$output line
|
||||
$ !
|
||||
$ ! Append the result to the log file
|
||||
$ !
|
||||
$ append h5ls_temp.dif h5ls.log
|
||||
$ !
|
||||
$ ! Delete temporary files
|
||||
$ !
|
||||
$! del *.out;*
|
||||
$! del *.dif;*
|
||||
$ !
|
||||
$ENDSUBROUTINE
|
||||
|
Loading…
x
Reference in New Issue
Block a user