summaryrefslogtreecommitdiffstats
path: root/test/dsets.c
diff options
context:
space:
mode:
authorRobb Matzke <matzke@llnl.gov>1998-01-29 04:11:58 (GMT)
committerRobb Matzke <matzke@llnl.gov>1998-01-29 04:11:58 (GMT)
commitd51c454c82435bf316423e53b6ebc72d6aa079c8 (patch)
treec80982fbccdfea74ae37c61565087e6b92f7586e /test/dsets.c
parentd4a3224c0fde991cdf65392aeeae326c46406121 (diff)
downloadhdf5-d51c454c82435bf316423e53b6ebc72d6aa079c8.zip
hdf5-d51c454c82435bf316423e53b6ebc72d6aa079c8.tar.gz
hdf5-d51c454c82435bf316423e53b6ebc72d6aa079c8.tar.bz2
[svn-r194] Changes since 19980128
---------------------- ./src/H5P.c Removed H5Pcreate() ./src/H5Psimp.c Copy int[] return value from H5P_get_hyperslab() to size_t[] argument to pass to other hyperslab functions. ./test/dsets.c Added a call to H5Eprint() to help track down Alberts O2k bug.
Diffstat (limited to 'test/dsets.c')
-rw-r--r--test/dsets.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/dsets.c b/test/dsets.c
index 51c5b41..edb951d 100644
--- a/test/dsets.c
+++ b/test/dsets.c
@@ -13,6 +13,9 @@
#include <stdio.h>
#include <unistd.h>
+#include <H5Eprivate.h>
+
+
#ifndef HAVE_FUNCTION
#define __FUNCTION__ ""
#endif
@@ -304,6 +307,7 @@ test_tconv(hid_t file)
/* Write the data to the dataset */
status = H5Dwrite(dataset, H5T_NATIVE_INT32, H5P_ALL, H5P_ALL,
H5C_DEFAULT, out);
+ if (status<0) H5Eprint (H5E_thrdid_g, stdout);
assert(status >= 0);
/* Create a new type with the opposite byte order */