diff options
author | mainzer <mainzer#hdfgroup.org> | 2017-04-15 04:44:23 (GMT) |
---|---|---|
committer | mainzer <mainzer#hdfgroup.org> | 2017-04-15 04:44:23 (GMT) |
commit | 4651eb738df5d31c62eae1f9fb70b1685c610e0c (patch) | |
tree | 6db509d7b22165630ea3e35d95dc78b746a2c8d6 /src/H5PL.c | |
parent | 906c1819188755a04fde6cc0ad7346775a6e61b8 (diff) | |
download | hdf5-4651eb738df5d31c62eae1f9fb70b1685c610e0c.zip hdf5-4651eb738df5d31c62eae1f9fb70b1685c610e0c.tar.gz hdf5-4651eb738df5d31c62eae1f9fb70b1685c610e0c.tar.bz2 |
Express test mods to test/cache.c
Modified test/cache.c to skip the smoke checks with paged aggregation
for all express test levels other than 0
Change to src/H5PL.c seems to be the result of autogen.sh. As it
seems to be correct, I am checking it in.
Tested serial and parallel (debug only) on jelly.
Diffstat (limited to 'src/H5PL.c')
-rw-r--r-- | src/H5PL.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -564,6 +564,7 @@ H5PLremove(unsigned int index) unsigned int plindex; FUNC_ENTER_API(FAIL) + H5TRACE1("e", "Iu", index); if(H5PL_num_paths_g == 0) HGOTO_ERROR(H5E_PLUGIN, H5E_NOSPACE, FAIL, "no directories in table") if(index >= H5PL_MAX_PATH_NUM) @@ -608,6 +609,7 @@ H5PLget(unsigned int index, char *pathname/*out*/, size_t size) char *dl_path = NULL; FUNC_ENTER_API(FAIL) + H5TRACE3("Zs", "Iuxz", index, pathname, size); if(H5PL_num_paths_g == 0) HGOTO_ERROR(H5E_PLUGIN, H5E_NOSPACE, FAIL, "no directories in table") if(index >= H5PL_MAX_PATH_NUM) |