diff options
author | Dana Robinson <43805+derobins@users.noreply.github.com> | 2023-07-27 21:08:47 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-27 21:08:47 (GMT) |
commit | 61186204c020a81b5b0044a3b5e08311ccf1424d (patch) | |
tree | d39acd70c119e92640277d4f595963f07d77f13c /tools/libtest | |
parent | 1e91d96fa02466ffe451319bdac1005f84dc7993 (diff) | |
download | hdf5-61186204c020a81b5b0044a3b5e08311ccf1424d.zip hdf5-61186204c020a81b5b0044a3b5e08311ccf1424d.tar.gz hdf5-61186204c020a81b5b0044a3b5e08311ccf1424d.tar.bz2 |
Remove "Programmer" lines (#3294)
Diffstat (limited to 'tools/libtest')
-rw-r--r-- | tools/libtest/h5tools_test_utils.c | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/tools/libtest/h5tools_test_utils.c b/tools/libtest/h5tools_test_utils.c index 7f49f97..d1da145 100644 --- a/tools/libtest/h5tools_test_utils.c +++ b/tools/libtest/h5tools_test_utils.c @@ -64,9 +64,6 @@ * JSVERIFY_NOT() - long-int inequality check; prints * JSVERIFY_STR() - string equality check; prints * - * Programmer: Jacob Smith - * 2017-10-24 - * *****************************************************************************/ H5_GCC_CLANG_DIAG_OFF("format") @@ -93,9 +90,6 @@ H5_GCC_CLANG_DIAG_OFF("format") * * *FAILED* at somefile.c:12 in function_name()... * - * Programmer: Jacob Smith - * 2017-10-24 - * *---------------------------------------------------------------------------- */ #define JSFAILED_AT() \ @@ -121,9 +115,6 @@ H5_GCC_CLANG_DIAG_OFF("format") * Prints a generic "FAILED AT" line to stdout and jumps to `error`, * similar to `TEST_ERROR` in h5test.h * - * Programmer: Jacob Smith - * 2017-10-23 - * *---------------------------------------------------------------------------- */ #define FAIL_IF(condition) \ @@ -149,9 +140,6 @@ H5_GCC_CLANG_DIAG_OFF("format") * However, `JSVERIFY(5, my_op(), "bad return")` may be even clearer. * (see JSVERIFY) * - * Programmer: Jacob Smith - * 2017-10-24 - * *---------------------------------------------------------------------------- */ #define FAIL_UNLESS(condition) \ @@ -180,9 +168,6 @@ H5_GCC_CLANG_DIAG_OFF("format") * ! Expected 425 * ! Actual 3 * - * Programmer: Jacob Smith - * 2017-10-24 - * *---------------------------------------------------------------------------- */ #define JSERR_LONG(expected, actual, reason) \ @@ -219,9 +204,6 @@ H5_GCC_CLANG_DIAG_OFF("format") * !!! Actual: * not what I expected at all * - * Programmer: Jacob Smith - * 2017-10-24 - * *---------------------------------------------------------------------------- */ #define JSERR_STR(expected, actual, reason) \ @@ -248,9 +230,6 @@ H5_GCC_CLANG_DIAG_OFF("format") * (with `reason`, if not NULL; expected/actual if NULL) * and jump to `error` at end of function * - * Programmer: Jacob Smith - * 2017-10-24 - * *---------------------------------------------------------------------------- */ #define JSVERIFY(expected, actual, reason) \ @@ -270,9 +249,6 @@ H5_GCC_CLANG_DIAG_OFF("format") * (with `reason`, if not NULL; expected/actual if NULL) * and jump to `error` at end of function * - * Programmer: Jacob Smith - * 2017-10-24 - * *---------------------------------------------------------------------------- */ #define JSVERIFY_NOT(expected, actual, reason) \ @@ -292,9 +268,6 @@ H5_GCC_CLANG_DIAG_OFF("format") * (with `reason`, if not NULL; expected/actual if NULL) * and jump to `error` at end of function * - * Programmer: Jacob Smith - * 2017-10-24 - * *---------------------------------------------------------------------------- */ #define JSVERIFY_STR(expected, actual, reason) \ @@ -309,8 +282,6 @@ H5_GCC_CLANG_DIAG_OFF("format") /*---------------------------------------------------------------------------- * Macro: JSVERIFY() * See: JSVERIFY documentation above. - * Programmer: Jacob Smith - * 2017-10-14 *---------------------------------------------------------------------------- */ #define JSVERIFY(actual, expected, reason) \ @@ -322,8 +293,6 @@ H5_GCC_CLANG_DIAG_OFF("format") /*---------------------------------------------------------------------------- * Macro: JSVERIFY_NOT() * See: JSVERIFY_NOT documentation above. - * Programmer: Jacob Smith - * 2017-10-14 *---------------------------------------------------------------------------- */ #define JSVERIFY_NOT(actual, expected, reason) \ @@ -335,8 +304,6 @@ H5_GCC_CLANG_DIAG_OFF("format") /*---------------------------------------------------------------------------- * Macro: JSVERIFY_STR() * See: JSVERIFY_STR documentation above. - * Programmer: Jacob Smith - * 2017-10-14 *---------------------------------------------------------------------------- */ #define JSVERIFY_STR(actual, expected, reason) \ @@ -369,9 +336,6 @@ H5_GCC_CLANG_DIAG_OFF("format") * 0 Tests passed. * 1 Tests failed. * - * Programmer: Jacob Smith - * 2017-11-11 - * *---------------------------------------------------------------------------- */ static unsigned @@ -590,9 +554,6 @@ error: * Return: 0 if test passes * 1 if failure * - * Programmer: Jacob Smith - * 2017-11-13 - * *---------------------------------------------------------------------------- */ static unsigned @@ -968,9 +929,6 @@ error: * Return: 0 if test passes * 1 if failure * - * Programmer: Jacob Smith - * 2018-07-12 - * *---------------------------------------------------------------------------- */ static unsigned @@ -1220,9 +1178,6 @@ H5_GCC_CLANG_DIAG_ON("format") * Return: 0 iff all test pass * 1 iff any failures * - * Programmer: Jacob Smith - * 2017-11-10 - * *---------------------------------------------------------------------------- */ int |