summaryrefslogtreecommitdiffstats
path: root/test/reserved.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2006-10-09 04:18:18 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2006-10-09 04:18:18 (GMT)
commit14dcb6db33f88011c3499d439c53890ab09d1ba2 (patch)
treecc05060f7dd94342c2e06726ef6b550bf4a7d8f1 /test/reserved.c
parent20720af231c875330a6074f65ee1c54e6a806fbb (diff)
downloadhdf5-14dcb6db33f88011c3499d439c53890ab09d1ba2.zip
hdf5-14dcb6db33f88011c3499d439c53890ab09d1ba2.tar.gz
hdf5-14dcb6db33f88011c3499d439c53890ab09d1ba2.tar.bz2
[svn-r12736] Description:
Add "use the latest format" support for dataspace object header encode/ decode routines and clean up format a bit for the latest format (new to 1.8.x releases) Remove storing 'perm' parameter for array datatypes in memory and the file, and add test to make certain that if any user applications are attempting to store them, we get some reports back. (Should be unlikely, since the RefMan says that the parameter is not implemented and is unsupported). Carry those changes into the tests, etc. Clean up a bunch more compiler warnings. Tested on: FreeBSD/32 4.11 (sleipnir) w/threadsafe Linux/32 2.4 (heping) w/FORTRAN & C++ Linux/64 2.4 (mir) w/enable-1.6-compat
Diffstat (limited to 'test/reserved.c')
-rwxr-xr-xtest/reserved.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/test/reserved.c b/test/reserved.c
index 0b64d3f..769cfb5 100755
--- a/test/reserved.c
+++ b/test/reserved.c
@@ -14,6 +14,7 @@
#include "h5test.h"
+#ifdef BROKEN
const char *FILENAME[] = {
"rsrv_heap",
"rsrv_ohdr",
@@ -402,6 +403,7 @@ rsrv_vlen(void)
} H5E_END_TRY
return 1;
}
+#endif /* BROKEN */
/*-------------------------------------------------------------------------
* Function: main
@@ -422,14 +424,14 @@ rsrv_vlen(void)
int
main(void)
{
- int num_errs=0;
- hid_t fapl;
- const char *envval = NULL;
-
/* This test is currently not working properly; it should be revisted
* when we have time.
*/
#ifdef BROKEN
+ int num_errs=0;
+ hid_t fapl;
+ const char *envval = NULL;
+
envval = HDgetenv("HDF5_DRIVER");
if (envval == NULL)
envval = "nomatch";
@@ -451,7 +453,7 @@ main(void)
{
puts("All address space reservation tests skippped - Incompatible with current Virtual File Driver");
}
-#endif
+#endif /* BROKEN */
SKIPPED();
return 0;