summaryrefslogtreecommitdiffstats
path: root/test/cache.c
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2021-05-28 15:48:51 (GMT)
committerGitHub <noreply@github.com>2021-05-28 15:48:51 (GMT)
commitf86004dbde46d4aff365cc7d0a5c503ff60d3416 (patch)
tree44f69fe2bdba7e91ef1aec46f8c19e8adaee6389 /test/cache.c
parent2ddf5fbd92ebdb0d59e208d88f159eec8a1ffbf8 (diff)
downloadhdf5-f86004dbde46d4aff365cc7d0a5c503ff60d3416.zip
hdf5-f86004dbde46d4aff365cc7d0a5c503ff60d3416.tar.gz
hdf5-f86004dbde46d4aff365cc7d0a5c503ff60d3416.tar.bz2
Normalization with develop (#704)
Diffstat (limited to 'test/cache.c')
-rw-r--r--test/cache.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/test/cache.c b/test/cache.c
index e83dd14..abbfaff 100644
--- a/test/cache.c
+++ b/test/cache.c
@@ -8060,19 +8060,6 @@ check_flush_cache__flush_op_test(H5F_t *file_ptr, int test_num, unsigned int flu
if ((check[i].entry_num != i) || (check[i].entry_type < 0) ||
(check[i].entry_type >= NUMBER_OF_ENTRY_TYPES) || (check[i].entry_index < 0) ||
(check[i].entry_index > max_indices[check[i].entry_type]) ||
-#ifndef H5_HAVE_STDBOOL_H
- /* Check for nonsense values if hbool_t is an integral
- * type instead of a real Boolean.
- */
- ((check[i].in_cache != TRUE) && (check[i].in_cache != FALSE)) ||
- ((check[i].at_main_addr != TRUE) && (check[i].at_main_addr != FALSE)) ||
- ((check[i].is_dirty != TRUE) && (check[i].is_dirty != FALSE)) ||
- ((check[i].is_protected != TRUE) && (check[i].is_protected != FALSE)) ||
- ((check[i].is_pinned != TRUE) && (check[i].is_pinned != FALSE)) ||
- ((check[i].expected_deserialized != TRUE) && (check[i].expected_deserialized != FALSE)) ||
- ((check[i].expected_serialized != TRUE) && (check[i].expected_serialized != FALSE)) ||
- ((check[i].expected_destroyed != TRUE) && (check[i].expected_destroyed != FALSE)) ||
-#endif /* H5_HAVE_STDBOOL_H */
(check[i].expected_size <= (size_t)0)) {
pass = FALSE;