diff options
-rw-r--r-- | tools/h5toh4.c | 6 | ||||
-rw-r--r-- | tools/testfiles/Expected/tattr.hdf | bin | 783 -> 783 bytes | |||
-rw-r--r-- | tools/testfiles/Expected/tstr.hdf | bin | 1429 -> 1429 bytes | |||
-rw-r--r-- | tools/testfiles/Expected/tstr2.hdf | bin | 4103 -> 4103 bytes | |||
-rw-r--r-- | tools/testh5toh4 | 4 |
5 files changed, 6 insertions, 4 deletions
diff --git a/tools/h5toh4.c b/tools/h5toh4.c index 228c33c..7182f8a 100644 --- a/tools/h5toh4.c +++ b/tools/h5toh4.c @@ -1175,7 +1175,7 @@ H5T_str_t strpad; case H5T_STRING: fxdlenstr = type; - h4_type = DFNT_INT8; + h4_type = DFNT_CHAR; if ((space = H5Aget_space(attr_id)) <= 0) { fprintf(stderr, "Error: H5Dget_space() didn't return appropriate value.\n"); @@ -1214,7 +1214,7 @@ H5T_str_t strpad; DEBUG_PRINT("Error detected in %s() [%s line %d]\n", "convert_attr", __FILE__, __LINE__); return strpad; } - if ((status = H5Tset_strpad(mem_type, strpad)) != SUCCEED ) { + if ((status = H5Tset_strpad(mem_type, H5T_STR_SPACEPAD)) != SUCCEED ) { fprintf(stderr, "Error: Problem with H5Tset_strpad()\n"); DEBUG_PRINT("Error detected in %s() [%s line %d]\n", "convert_attr", __FILE__, __LINE__); return status; @@ -1954,7 +1954,7 @@ H5T_str_t strpad; return status; } - h4_type = DFNT_INT8; + h4_type = DFNT_CHAR; if ((mem_type = H5Tcopy(H5T_C_S1)) == FAIL ) { fprintf(stderr, "Error: Problems translating h4 type to mem type\n"); DEBUG_PRINT("Error detected in %s() [%s line %d]\n", "convert_dataset_string", __FILE__, __LINE__); diff --git a/tools/testfiles/Expected/tattr.hdf b/tools/testfiles/Expected/tattr.hdf Binary files differindex cf1519a..36b2497 100644 --- a/tools/testfiles/Expected/tattr.hdf +++ b/tools/testfiles/Expected/tattr.hdf diff --git a/tools/testfiles/Expected/tstr.hdf b/tools/testfiles/Expected/tstr.hdf Binary files differindex 90b5694..5507e24 100644 --- a/tools/testfiles/Expected/tstr.hdf +++ b/tools/testfiles/Expected/tstr.hdf diff --git a/tools/testfiles/Expected/tstr2.hdf b/tools/testfiles/Expected/tstr2.hdf Binary files differindex 05328a0..dc4df5b 100644 --- a/tools/testfiles/Expected/tstr2.hdf +++ b/tools/testfiles/Expected/tstr2.hdf diff --git a/tools/testh5toh4 b/tools/testh5toh4 index af224ff..7e4e0f2 100644 --- a/tools/testh5toh4 +++ b/tools/testh5toh4 @@ -295,5 +295,7 @@ if test $nerrors -eq 0 ; then echo "All h5toh4 tests passed." fi -$RM -r $OUTDIR +if test -z "$HDF5_NOCLEANUP"; then + $RM -r $OUTDIR +fi exit $nerrors |