From e79c145d91e43aabf6b9d5cf573eae9afeea1e38 Mon Sep 17 00:00:00 2001 From: Quincey Koziol Date: Wed, 9 Mar 2005 14:53:27 -0500 Subject: [svn-r10173] Purpose: Code cleanup Description: Remove some extraneous ifdef's Platforms tested: FreeBSD 4.11 (sleipnir) Too minor for other testing --- test/btree2.c | 16 ---------------- 1 file changed, 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: -- cgit v0.12