diff options
author | Robb Matzke <matzke@llnl.gov> | 1997-12-19 18:28:54 (GMT) |
---|---|---|
committer | Robb Matzke <matzke@llnl.gov> | 1997-12-19 18:28:54 (GMT) |
commit | dfff2572ca834f41d27510244d2886170626b265 (patch) | |
tree | 1518beca0d7db738c918deb1e8e902e37b58dd26 | |
parent | 2f5495e5503138167eee893e57030df70625e10b (diff) | |
download | hdf5-dfff2572ca834f41d27510244d2886170626b265.zip hdf5-dfff2572ca834f41d27510244d2886170626b265.tar.gz hdf5-dfff2572ca834f41d27510244d2886170626b265.tar.bz2 |
[svn-r149] ./test/istore.c
Flipped a couple constants for testing. Nothing important.
-rw-r--r-- | test/istore.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/test/istore.c b/test/istore.c index cf331ef..580518b 100644 --- a/test/istore.c +++ b/test/istore.c @@ -15,12 +15,13 @@ #include <H5Oprivate.h> #include <H5Vprivate.h> -#if 1 +#if 0 # define FILETYPE H5F_LOW_DFLT # define FILENAME "istore.h5" -#elif 0 +#elif 1 # define FILETYPE H5F_LOW_FAM # define FILENAME "istore-%05d.h5" +# define TEST_FAMILY 1 #else # define FILETYPE H5F_LOW_SPLIT # define FILENAME "istore-split" @@ -574,14 +575,14 @@ main (int argc, char *argv[]) exit (1); } -#if 0 +#ifdef TEST_FAMILY { /* * For testing file families, fool the library into thinking it already * allocated a whole bunch of data. */ haddr_t addr; - addr.offset = 250 * ((uint64)1<<30); /*250 GB*/ + addr.offset = 8 * ((uint64)1<<30); /*8 GB*/ H5F_low_seteof (f->shared->lf, &addr); } #endif |