diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2004-01-10 01:41:34 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2004-01-10 01:41:34 (GMT) |
commit | 7f6fbe6b604423782f6195b809a23c32d0bd1863 (patch) | |
tree | e8c77f2aec3dbc365983995305864e47c5119b18 /test/ttbbt.c | |
parent | c891e4a01e575cec23d51b526fd792b57eab9d06 (diff) | |
download | hdf5-7f6fbe6b604423782f6195b809a23c32d0bd1863.zip hdf5-7f6fbe6b604423782f6195b809a23c32d0bd1863.tar.gz hdf5-7f6fbe6b604423782f6195b809a23c32d0bd1863.tar.bz2 |
[svn-r8049] Purpose:
Code cleanup & reorganization
Description:
Move further in the testing framework cleanup, eliminating all the
global variables (moving them into testframe.c as static variables) from the
testing framework code and moving it into the libh5test.a.
Platforms tested:
FreeBSD 4.9 (sleipnir) w & w/o thread-safety, c++ & parallel
h5committested
Diffstat (limited to 'test/ttbbt.c')
-rw-r--r-- | test/ttbbt.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/ttbbt.c b/test/ttbbt.c index dba49aa..780e3d3 100644 --- a/test/ttbbt.c +++ b/test/ttbbt.c @@ -100,7 +100,7 @@ test_tbbt(void) swap_arr(rem_arr, i, t); } /* end for */ - if (Verbosity > 9) + if (GetTestVerbosity() > 9) { printf("ins_arr: \n"); for (i = 0; i < test_size; i++) /* print the arrays */ @@ -117,12 +117,12 @@ test_tbbt(void) MESSAGE(9, ("inserting %d\n", (int) ins_arr[i])); H5TB_dins(tree, (void *) &ins_arr[i], NULL); #ifdef H5TB_DEBUG - if(Verbosity>9) + if(GetTestVerbosity()>9) H5TB_dump(tree, -1); #endif /* H5TB_DEBUG */ } #ifdef H5TB_DEBUG - if(Verbosity>9) + if(GetTestVerbosity()>9) H5TB_dump(tree, -1); #endif /* H5TB_DEBUG */ for (i = 0; i < test_size; i++) @@ -134,7 +134,7 @@ test_tbbt(void) MESSAGE(9, ("removing %d\n", (int) key)); H5TB_rem((H5TB_NODE **) tree, (H5TB_NODE *) r, NULL); #ifdef H5TB_DEBUG - if(Verbosity>9) + if(GetTestVerbosity()>9) H5TB_dump(tree, -1); #endif /* H5TB_DEBUG */ } /* end for */ |