summaryrefslogtreecommitdiffstats
path: root/test/ttst.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2005-08-13 20:53:35 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2005-08-13 20:53:35 (GMT)
commit6b45f5172ccb4311e0be9ae15da3758abb6b0e67 (patch)
tree5a7a112fe7a8a98c6fecb45b513789d15962eb3d /test/ttst.c
parent6562465a2c2a58cfbc2f47bf60bb538f7a783933 (diff)
downloadhdf5-6b45f5172ccb4311e0be9ae15da3758abb6b0e67.zip
hdf5-6b45f5172ccb4311e0be9ae15da3758abb6b0e67.tar.gz
hdf5-6b45f5172ccb4311e0be9ae15da3758abb6b0e67.tar.bz2
[svn-r11245] Purpose:
Code cleanup Description: Trim trailing whitespace, which is making 'diff'ing the two branches difficult. Solution: Ran this script in each directory: foreach f (*.[ch] *.cpp) sed 's/[[:blank:]]*$//' $f > sed.out && mv sed.out $f end Platforms tested: FreeBSD 4.11 (sleipnir) Too minor to require h5committest
Diffstat (limited to 'test/ttst.c')
-rw-r--r--test/ttst.c26
1 files changed, 13 insertions, 13 deletions
diff --git a/test/ttst.c b/test/ttst.c
index 5663050..2898681 100644
--- a/test/ttst.c
+++ b/test/ttst.c
@@ -67,9 +67,9 @@ static int tst_strcmp(const void *_s1, const void *_s2)
**
** test_tst_init(): Test basic H5ST (ternary search tree) selection code.
** Initialize data for TST testing
-**
+**
****************************************************************/
-static void
+static void
test_tst_init(void)
{
time_t curr_time; /* Current time, for seeding random number generator */
@@ -143,9 +143,9 @@ test_tst_init(void)
**
** test_tst_create(): Test basic H5ST (ternary search tree) selection code.
** Tests creating and closing TSTs.
-**
+**
****************************************************************/
-static void
+static void
test_tst_create(void)
{
H5ST_tree_t *tree; /* TST created */
@@ -173,9 +173,9 @@ test_tst_create(void)
**
** test_tst_insert(): Test basic H5ST (ternary search tree) selection code.
** Tests inserting key/value pairs into TST
-**
+**
****************************************************************/
-static void
+static void
test_tst_insert(void)
{
H5ST_tree_t *tree; /* TST created */
@@ -235,9 +235,9 @@ test_tst_insert(void)
**
** test_tst_iterate(): Test basic H5ST (ternary search tree) code.
** Tests iterating through key/value pairs in TST
-**
+**
****************************************************************/
-static void
+static void
test_tst_iterate(void)
{
H5ST_tree_t *tree; /* TST created */
@@ -281,9 +281,9 @@ test_tst_iterate(void)
**
** test_tst_remove(): Test basic H5ST (ternary search tree) code.
** Tests removing key/value pairs by string value in TST
-**
+**
****************************************************************/
-static void
+static void
test_tst_remove(void)
{
H5ST_tree_t *tree; /* TST created */
@@ -354,9 +354,9 @@ test_tst_remove(void)
**
** test_tst_finalize(): Test basic H5ST (ternary search tree) selection code.
** Wrap up data for TST testing
-**
+**
****************************************************************/
-static void
+static void
test_tst_finalize(void)
{
/* Release memory for unordered, randomized and sorted order unique words */
@@ -368,7 +368,7 @@ test_tst_finalize(void)
/****************************************************************
**
** test_tst(): Main H5ST selection testing routine.
-**
+**
****************************************************************/
void
test_tst(void)