summaryrefslogtreecommitdiffstats
path: root/test/tstab.c
diff options
context:
space:
mode:
authorRobb Matzke <matzke@llnl.gov>1998-02-25 20:31:17 (GMT)
committerRobb Matzke <matzke@llnl.gov>1998-02-25 20:31:17 (GMT)
commitad73f18f5e759c4bd3d12c331659a24b54d0c39a (patch)
tree660a8bb32cc118a647757c5ae2321cf9b1ca9073 /test/tstab.c
parentc543632ba5cd609d2e6303fa9cf55685568fa851 (diff)
downloadhdf5-ad73f18f5e759c4bd3d12c331659a24b54d0c39a.zip
hdf5-ad73f18f5e759c4bd3d12c331659a24b54d0c39a.tar.gz
hdf5-ad73f18f5e759c4bd3d12c331659a24b54d0c39a.tar.bz2
[svn-r298] Changes since 19980219
---------------------- ./html/Files.html ./src/H5C.c ./src/H5Cpublic.h ./src/H5Ffamily.c ./src/H5Fprivate.h ./src/H5Fsplit.c ./test/tstab.c Added file-access property functions. The split driver takes file extensions as properties. ./src/H5A.c ./src/H5Aprivate.h Added some comments. Changed H5A_destroy() to call the free function on all the atoms that are destroyed. This fixes a bug where the file boot block isn't updated if the file isn't closed before calling exit(). Removed extra `*' and `&' from some places. ./src/H5AC.c Replaced an occurrence of NO_ADDR with NULL. ./src/H5Odtype.c ./src/H5T.c ./src/H5Tconv.c ./src/H5Tpkg.h Data types of compound members are pointers. ./H5private.h Some changes to make lseek64() work on Irix 5.3 where header files don't realize that `long long' works. ./acconfig.h ./configure.in Removed definition for PHDF5 since it looks like everyone is useing HAVE_PARALLEL now. ./configure.in ./src/H5detec.c Added checks for gethostname() and getpwuid().
Diffstat (limited to 'test/tstab.c')
-rw-r--r--test/tstab.c25
1 files changed, 21 insertions, 4 deletions
diff --git a/test/tstab.c b/test/tstab.c
index 4210db7..ca3c069 100644
--- a/test/tstab.c
+++ b/test/tstab.c
@@ -239,11 +239,28 @@ test_2(void)
/*
* File access property list.
*/
-#if 0
access_plist = H5Pcreate (H5P_FILE_ACCESS);
- H5Pset_core (access_plist, 3000000);
-#else
- access_plist = H5P_DEFAULT;
+
+#if 0
+ /* Try temporary core files */
+ H5Cset_core (access_plist, 3000000);
+#elif 0
+ /* Try a default split file but with our own name extensions */
+ H5Cset_split (access_plist, ".XX1", H5C_DEFAULT, ".XX2", H5C_DEFAULT);
+#elif 0
+ {
+ /* Try a split file with an in-core meta data part */
+ hid_t meta_access = H5Ccreate (H5C_FILE_ACCESS);
+ H5Cset_core (meta_access, 1024*1024);
+ H5Cset_split (access_plist, NULL, meta_access, NULL, H5C_DEFAULT);
+ }
+#elif 0
+ {
+ /* Try a split file with an in-core raw data part */
+ hid_t raw_access = H5Ccreate (H5C_FILE_ACCESS);
+ H5Cset_core (raw_access, 1024*1024);
+ H5Cset_split (access_plist, NULL, H5C_DEFAULT, NULL, raw_access);
+ }
#endif
/* create the file */