diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/testh5toh4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/testh5toh4 b/tools/testh5toh4 index 14809b2..e9b813d 100644 --- a/tools/testh5toh4 +++ b/tools/testh5toh4 @@ -49,7 +49,7 @@ CONVERT() expect=`echo $h4file | $SED -e s/\.hdf/.dmp/` if test "testfiles/tloop.hdf" = "$h4file"; then - $H4DUMP dumpvg $h4file | head -50 > $actual + ($H4DUMP dumpvg $h4file |head -50 >$actual) 2>/dev/null else $H4DUMP dumpvg $h4file > $actual fi @@ -104,7 +104,7 @@ CONVERT() expect=`echo $h4file | $SED -e s/\.hdf/.dmp/` if test "testfiles/tloop.hdf" = "$h4file"; then - $H4DUMP dumpvg $h4file | head -50 > $actual + ($H4DUMP dumpvg $h4file |head -50 >$actual) 2>/dev/null else $H4DUMP dumpvg $h4file > $actual fi |