blob: a6836d4907076594994d208ce8eb875c5e1dcab8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
#! /bin/sh
#
# Copyright by The HDF Group.
# 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://hdfgroup.org/HDF5/doc/Copyright.html. If you do not have
# access to either file, you may request a copy from help@hdfgroup.org.
#
# Tests for the h5clear tool
#
srcdir=@srcdir@
TESTNAME=h5clear
EXIT_SUCCESS=0
EXIT_FAILURE=1
H5CLEAR=../../src/misc/h5clear
H5CLEAR_BIN=`pwd`/$H5CLEAR # The path of the tool binary
OPENCHK=clear_open_chk # Try opening the test file
OPENCHK_BIN=`pwd`/$OPENCHK # The path to the binary
SUCCEED=0
FAIL=1
nerrors=0
verbose=yes
# Print a line-line message left justified in a field of 70 characters
# beginning with the word "Testing".
#
TESTING() {
SPACES=" "
echo "Testing $* $SPACES" | cut -c1-70 | tr -d '\012'
}
# (1)Use "clear_open_chk" to check if the file open succeeds or fails
# $1 is the filename to open
# $2 is the expected return from "clear_open_chk"
# (2) Use "h5clear" to clear the status_flags in the test file
# (3) Open the test file via "clear_open_chk"
TOOLTEST() {
fname=$1
expected=$2
# (1)
$OPENCHK_BIN $fname 2>/dev/null
actual=$?
if test $actual -ne $expected; then
echo "Unexpected return from $OPENCHK"
nerrors=`expr $nerrors + 1`
fi
# (2)
TESTING $H5CLEAR $1
fname=$1
# Use "h5clear" to clear the status_flags in the test file
$RUNSERIAL $H5CLEAR_BIN $fname
if test $? -ne $SUCCEED; then
echo ".....$H5CLEAR: should succeed"
nerrors=`expr $nerrors + 1`
else
# (3) Open the test file via "clear_open_chk"
$OPENCHK_BIN $fname
if test $? -ne $SUCCEED; then
echo "......$OPENCHK: should succeed"
nerrors=`expr $nerrors + 1`
else
echo "PASSED"
fi
fi
}
##############################################################################
##############################################################################
### T H E T E S T S ###
##############################################################################
##############################################################################
#
# Initial file open fails
# After "h5clear" the file, the subsequent file open succeeds
TOOLTEST h5clear_sec2_v3.h5 $FAIL
#
TOOLTEST h5clear_log_v3.h5 $FAIL
#
TOOLTEST latest_h5clear_sec2_v3.h5 $FAIL
#
TOOLTEST latest_h5clear_log_v3.h5 $FAIL
#
#
# File open succeeds because the library does not check status_flags for file with < v3 superblock
TOOLTEST h5clear_sec2_v0.h5 $SUCCEED
TOOLTEST h5clear_sec2_v2.h5 $SUCCEED
#
# Clean up test files
if test -z "$HDF5_NOCLEANUP"; then
rm -f h5clear_*.h5 latest_h5clear*.h5
fi
if test $nerrors -eq 0 ; then
echo "All $TESTNAME tests passed."
exit $EXIT_SUCCESS
else
echo "$TESTNAME tests failed with $nerrors error(s)."
exit $EXIT_FAILURE
fi
|