summaryrefslogtreecommitdiffstats
path: root/test/btree2.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2005-03-09 19:53:27 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2005-03-09 19:53:27 (GMT)
commite79c145d91e43aabf6b9d5cf573eae9afeea1e38 (patch)
treebd48fa54d332af2bff988f598bd855b74b45268b /test/btree2.c
parentec169e7bc29339f958174e1e714cd7299b6ccdb7 (diff)
downloadhdf5-e79c145d91e43aabf6b9d5cf573eae9afeea1e38.zip
hdf5-e79c145d91e43aabf6b9d5cf573eae9afeea1e38.tar.gz
hdf5-e79c145d91e43aabf6b9d5cf573eae9afeea1e38.tar.bz2
[svn-r10173] Purpose:
Code cleanup Description: Remove some extraneous ifdef's Platforms tested: FreeBSD 4.11 (sleipnir) Too minor for other testing
Diffstat (limited to 'test/btree2.c')
-rw-r--r--test/btree2.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/test/btree2.c b/test/btree2.c
index ca97f07..e308fd9 100644
--- a/test/btree2.c
+++ b/test/btree2.c
@@ -5237,7 +5237,6 @@ main(void)
/* Test B-tree record insertion */
/* Iteration, find & index routines tested in these routines as well */
-#ifndef QAK
nerrors += test_insert_basic(fapl);
nerrors += test_insert_split_root(fapl);
nerrors += test_insert_level1_2leaf_redistrib(fapl);
@@ -5252,11 +5251,7 @@ main(void)
nerrors += test_insert_level2_3internal_redistrib(fapl);
nerrors += test_insert_level2_3internal_split(fapl);
nerrors += test_insert_lots(fapl);
-#else /* QAK */
-HDfprintf(stderr,"Uncomment tests!\n");
-#endif /* QAK */
-#ifndef QAK
/* Test B-tree record removal */
/* Querying the number of records routine also tested in these routines as well */
nerrors += test_remove_basic(fapl);
@@ -5280,24 +5275,13 @@ HDfprintf(stderr,"Uncomment tests!\n");
nerrors += test_remove_level2_3internal_merge(fapl);
nerrors += test_remove_level2_collapse_right(fapl);
nerrors += test_remove_lots(fapl);
-#else /* QAK */
-HDfprintf(stderr,"Uncomment tests!\n");
-#endif /* QAK */
-#ifndef QAK
/* Test more complex B-tree queries */
nerrors += test_find_neighbor(fapl);
-#else /* QAK */
-HDfprintf(stderr,"Uncomment tests!\n");
-#endif /* QAK */
if (nerrors) goto error;
puts("All v2 B-tree tests passed.");
-#ifndef QAK
h5_cleanup(FILENAME, fapl);
-#else /* QAK */
-HDfprintf(stderr,"Uncomment cleanup!\n");
-#endif /* QAK */
return 0;
error: