diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2006-04-10 03:03:30 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2006-04-10 03:03:30 (GMT) |
commit | 5a2c6b0ae10a93acc8e1fc2c058da5f6f5ee11da (patch) | |
tree | 9525258a8a09b6a1dab203796553f89e785d1d04 /test/stab.c | |
parent | 68ec8c72bc2f58b5a402e82337315b26b85ef7d3 (diff) | |
download | hdf5-5a2c6b0ae10a93acc8e1fc2c058da5f6f5ee11da.zip hdf5-5a2c6b0ae10a93acc8e1fc2c058da5f6f5ee11da.tar.gz hdf5-5a2c6b0ae10a93acc8e1fc2c058da5f6f5ee11da.tar.bz2 |
[svn-r12221] Purpose:
"Hide" file format changes (for now)
Description:
Add ifdef's (controlled by the --enable-group-revision configure flag)
to disable group revision changes to the file format, in order to allow alpha
release to go ahead without releasing an unsupported version into the wild.
Platforms tested:
FreeBSD 4.11 (sleipnir)
Linux 2.4 32-bit (heping)
Linux 2.4 64-bit (mir)
Solaris 2.9 (shanti)
Diffstat (limited to 'test/stab.c')
-rw-r--r-- | test/stab.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/stab.c b/test/stab.c index 47f4966..4cf73d9 100644 --- a/test/stab.c +++ b/test/stab.c @@ -257,6 +257,7 @@ test_large(hid_t file) return 1; } +#ifdef H5_GROUP_REVISION /*------------------------------------------------------------------------- * Function: lifecycle @@ -967,6 +968,7 @@ error: } H5E_END_TRY; return 1; } /* end gcpl_on_root() */ +#endif /* H5_GROUP_REVISION */ /*------------------------------------------------------------------------- @@ -1014,11 +1016,13 @@ main(void) nerrors += test_misc(file); nerrors += test_long(file); nerrors += test_large(file); +#ifdef H5_GROUP_REVISION nerrors += lifecycle(fapl); nerrors += long_compact(fapl); nerrors += read_old(fapl); nerrors += no_compact(fapl); nerrors += gcpl_on_root(fapl); +#endif /* H5_GROUP_REVISION */ if (nerrors) goto error; /* Cleanup */ |