diff options
author | Quincey Koziol <koziol@lbl.gov> | 2017-02-23 17:14:28 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@lbl.gov> | 2017-02-23 17:14:28 (GMT) |
commit | 42bbd8b6b05a6a1374f97de5050403a0a0eede12 (patch) | |
tree | 54a9d83fd158cac2cdfb3ee58aefa06f401e5ed1 /test/links.c | |
parent | 054cc1af293fbf0d2b46e65faae9a43057682d2d (diff) | |
parent | c3321cba03450d8d70934505f40676c3a530a2cb (diff) | |
download | hdf5-42bbd8b6b05a6a1374f97de5050403a0a0eede12.zip hdf5-42bbd8b6b05a6a1374f97de5050403a0a0eede12.tar.gz hdf5-42bbd8b6b05a6a1374f97de5050403a0a0eede12.tar.bz2 |
Merge pull request #308 in HDFFV/hdf5 from merge_page_buffering_03 to develop
* commit 'c3321cba03450d8d70934505f40676c3a530a2cb':
Fix some more signed -> unsigned value issues with cache data structures, also misc. style cleanups. All to align w/incoming page_buffering changes.
Diffstat (limited to 'test/links.c')
-rw-r--r-- | test/links.c | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/test/links.c b/test/links.c index d5a3b83..3364c7e 100644 --- a/test/links.c +++ b/test/links.c @@ -21,18 +21,22 @@ */ /* + * This file needs to access private information from the H5FD package. + * This file also needs to access the file driver testing code. + */ +#define H5FD_FRIEND /*suppress error about including H5FDpkg */ +#define H5FD_TESTING + +/* * This file needs to access private information from the H5G package. * This file also needs to access the group testing code. */ #define H5G_FRIEND /*suppress error about including H5Gpkg */ #define H5G_TESTING -#define H5FD_FRIEND /*suppress error about including H5FDpkg */ -#define H5FD_TESTING - #include "h5test.h" #include "H5srcdir.h" -#include "H5FDpkg.h" /* File drivers */ +#include "H5FDpkg.h" /* File drivers */ #include "H5Gpkg.h" /* Groups */ #include "H5Iprivate.h" /* IDs */ #include "H5Lprivate.h" /* Links */ |