diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2005-08-13 20:53:35 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2005-08-13 20:53:35 (GMT) |
commit | 6b45f5172ccb4311e0be9ae15da3758abb6b0e67 (patch) | |
tree | 5a7a112fe7a8a98c6fecb45b513789d15962eb3d /test/theap.c | |
parent | 6562465a2c2a58cfbc2f47bf60bb538f7a783933 (diff) | |
download | hdf5-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/theap.c')
-rw-r--r-- | test/theap.c | 70 |
1 files changed, 35 insertions, 35 deletions
diff --git a/test/theap.c b/test/theap.c index 8e5105a..3ceb167 100644 --- a/test/theap.c +++ b/test/theap.c @@ -82,9 +82,9 @@ static int tst_inc_sort(const void *_i1, const void *_i2) ** ** test_heap_init(): Test H5HP (heap) code. ** Initialize data for Heap testing -** +** ****************************************************************/ -static void +static void test_heap_init(void) { time_t curr_time; /* Current time, for seeding random number generator */ @@ -110,9 +110,9 @@ test_heap_init(void) ** ** test_heap_create(): Test basic H5HP (heap) code. ** Tests creating and closing heaps. -** +** ****************************************************************/ -static void +static void test_heap_create(void) { H5HP_t *heap; /* Heap created */ @@ -143,9 +143,9 @@ test_heap_create(void) ** ** test_heap_insert_min(): Test H5HP (heap) code. ** Tests basic inserting objects into minimum heaps. -** +** ****************************************************************/ -static void +static void test_heap_insert_min(void) { H5HP_t *heap; /* Heap created */ @@ -217,9 +217,9 @@ test_heap_insert_min(void) ** ** test_heap_insert(): Test H5HP (heap) code. ** Tests basic inserting objects into maximum heaps. -** +** ****************************************************************/ -static void +static void test_heap_insert_max(void) { H5HP_t *heap; /* Heap created */ @@ -291,9 +291,9 @@ test_heap_insert_max(void) ** ** test_heap_insert(): Test H5HP (heap) code. ** Tests basic inserting objects into heaps. -** +** ****************************************************************/ -static void +static void test_heap_insert(void) { /* Output message about test being performed */ @@ -308,7 +308,7 @@ test_heap_insert(void) ** ** test_heap_insert_many_core (): Tests H5HP (heap) code. ** "Core" routine called by test_heap_insert_many() routine. -** +** ****************************************************************/ static void test_heap_insert_many_core(H5HP_type_t heap_type, test_obj *arr, size_t nelem, int top_val) { @@ -351,9 +351,9 @@ static void test_heap_insert_many_core(H5HP_type_t heap_type, test_obj *arr, siz ** ** test_heap_insert_many (): Test H5HP (heap) code. ** Tests inserting many objects into heaps. -** +** ****************************************************************/ -static void +static void test_heap_insert_many(void) { /* Output message about test being performed */ @@ -383,9 +383,9 @@ test_heap_insert_many(void) ** ** test_heap_remove_min(): Test H5HP (heap) code. ** Tests basic removal of objects from minimum heaps. -** +** ****************************************************************/ -static void +static void test_heap_remove_min(void) { H5HP_t *heap; /* Heap created */ @@ -457,9 +457,9 @@ test_heap_remove_min(void) ** ** test_heap_remove_max(): Test H5HP (heap) code. ** Tests basic removal of objects from maximum heaps. -** +** ****************************************************************/ -static void +static void test_heap_remove_max(void) { H5HP_t *heap; /* Heap created */ @@ -531,9 +531,9 @@ test_heap_remove_max(void) ** ** test_heap_remove(): Test H5HP (heap) code. ** Tests basic removal of objects from minimum & maximum heaps. -** +** ****************************************************************/ -static void +static void test_heap_remove(void) { /* Output message about test being performed */ @@ -548,7 +548,7 @@ test_heap_remove(void) ** ** test_heap_remove_many_core (): Tests H5HP (heap) code. ** "Core" routine called by test_heap_remove_many() routine. -** +** ****************************************************************/ static void test_heap_remove_many_core(H5HP_type_t heap_type, test_obj *arr, size_t nelem) { @@ -661,9 +661,9 @@ static void test_heap_remove_many_core(H5HP_type_t heap_type, test_obj *arr, siz ** ** test_heap_remove_many (): Test H5HP (heap) code. ** Tests removing many objects into heaps. -** +** ****************************************************************/ -static void +static void test_heap_remove_many(void) { /* Output message about test being performed */ @@ -693,9 +693,9 @@ test_heap_remove_many(void) ** ** test_heap_change_min (): Test H5HP (heap) code. ** Tests changing the priority of an object in a minimum heap -** +** ****************************************************************/ -static void +static void test_heap_change_min(void) { H5HP_t *heap; /* Heap created */ @@ -767,9 +767,9 @@ test_heap_change_min(void) ** ** test_heap_change_max (): Test H5HP (heap) code. ** Tests changing the priority of an object in a maximumheap -** +** ****************************************************************/ -static void +static void test_heap_change_max(void) { H5HP_t *heap; /* Heap created */ @@ -841,9 +841,9 @@ test_heap_change_max(void) ** ** test_heap_change (): Test H5HP (heap) code. ** Tests changing the priority of an object in maximum & minimum heaps -** +** ****************************************************************/ -static void +static void test_heap_change(void) { /* Output message about test being performed */ @@ -859,9 +859,9 @@ test_heap_change(void) ** test_heap_incdec_min (): Test H5HP (heap) code. ** Tests incrementing & decrementing priority of objects on ** a minimum heap. -** +** ****************************************************************/ -static void +static void test_heap_incdec_min(void) { H5HP_t *heap; /* Heap created */ @@ -934,9 +934,9 @@ test_heap_incdec_min(void) ** test_heap_incdec_max (): Test H5HP (heap) code. ** Tests incrementing & decrementing priority of objects on ** a maximum heap. -** +** ****************************************************************/ -static void +static void test_heap_incdec_max(void) { H5HP_t *heap; /* Heap created */ @@ -1009,9 +1009,9 @@ test_heap_incdec_max(void) ** test_heap_incdec (): Test H5HP (heap) code. ** Tests incrementing & decrementing priority of objects on ** maximum & minimum heaps. -** +** ****************************************************************/ -static void +static void test_heap_incdec(void) { /* Output message about test being performed */ @@ -1025,7 +1025,7 @@ test_heap_incdec(void) /**************************************************************** ** ** test_heap(): Main H5HP testing routine. -** +** ****************************************************************/ void test_heap(void) |