diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2005-08-13 21:06:26 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2005-08-13 21:06:26 (GMT) |
commit | c7bf502798ed500d9637ff3dd23a83420afd5070 (patch) | |
tree | a29e4bc6023564b9db5b435e4646b2b667171da2 /test/trefstr.c | |
parent | 5ad5d1a6d1190bbc6ed064eaae7ca1d2e361cb0a (diff) | |
download | hdf5-c7bf502798ed500d9637ff3dd23a83420afd5070.zip hdf5-c7bf502798ed500d9637ff3dd23a83420afd5070.tar.gz hdf5-c7bf502798ed500d9637ff3dd23a83420afd5070.tar.bz2 |
[svn-r11246] 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/trefstr.c')
-rw-r--r-- | test/trefstr.c | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/test/trefstr.c b/test/trefstr.c index a278ebc..8073c3f 100644 --- a/test/trefstr.c +++ b/test/trefstr.c @@ -43,9 +43,9 @@ H5FL_BLK_EXTERN(str_buf); ** ** test_refstr_init(): Test basic H5RS (ref-counted strings) code. ** Initialize data for RS testing -** +** ****************************************************************/ -static void +static void test_refstr_init(void) { } /* end test_refstr_init() */ @@ -54,9 +54,9 @@ test_refstr_init(void) ** ** test_refstr_create(): Test basic H5RS (ref-counted strings) code. ** Tests creating and closing ref-counted strings. -** +** ****************************************************************/ -static void +static void test_refstr_create(void) { H5RS_str_t *rs; /* Ref-counted string created */ @@ -84,9 +84,9 @@ test_refstr_create(void) ** ** test_refstr_count(): Test basic H5RS (ref-counted strings) code. ** Tests reference counting on ref-counted strings. -** +** ****************************************************************/ -static void +static void test_refstr_count(void) { H5RS_str_t *rs; /* Ref-counted string created */ @@ -130,9 +130,9 @@ test_refstr_count(void) ** ** test_refstr_dup(): Test basic H5RS (ref-counted strings) code. ** Tests duplicating ref-counted strings. -** +** ****************************************************************/ -static void +static void test_refstr_dup(void) { H5RS_str_t *rs1; /* Ref-counted string created */ @@ -179,9 +179,9 @@ test_refstr_dup(void) ** ** test_refstr_cmp(): Test basic H5RS (ref-counted strings) code. ** Tests comparing ref-counted strings. -** +** ****************************************************************/ -static void +static void test_refstr_cmp(void) { H5RS_str_t *rs1; /* Ref-counted string created */ @@ -228,9 +228,9 @@ test_refstr_cmp(void) ** ** test_refstr_wrap(): Test basic H5RS (ref-counted strings) code. ** Tests wrapping ref-counted strings around existing strings. -** +** ****************************************************************/ -static void +static void test_refstr_wrap(void) { H5RS_str_t *rs; /* Ref-counted string created */ @@ -284,9 +284,9 @@ test_refstr_wrap(void) ** test_refstr_own(): Test basic H5RS (ref-counted strings) code. ** Tests transferring ownership of dynamically allocated strings ** to ref-counted strings. -** +** ****************************************************************/ -static void +static void test_refstr_own(void) { H5RS_str_t *rs; /* Ref-counted string created */ @@ -339,9 +339,9 @@ test_refstr_own(void) ** ** test_refstr_finalize(): Test basic H5RS (ref-counted strings) code. ** Wrap up data for ref-counted string testing -** +** ****************************************************************/ -static void +static void test_refstr_finalize(void) { } /* end test_refstr_finalize() */ @@ -349,7 +349,7 @@ test_refstr_finalize(void) /**************************************************************** ** ** test_refstr(): Main H5RS testing routine. -** +** ****************************************************************/ void test_refstr(void) |