summaryrefslogtreecommitdiffstats
path: root/test/ros3.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/ros3.c')
-rw-r--r--test/ros3.c66
1 files changed, 0 insertions, 66 deletions
diff --git a/test/ros3.c b/test/ros3.c
index 99f9f52..9a41a54 100644
--- a/test/ros3.c
+++ b/test/ros3.c
@@ -19,9 +19,6 @@
* at the VFL (virtual file layer) level.
*
* Demonstrates basic use cases and fapl/dxpl interaction.
- *
- * Programmer: Jacob Smith
- * 2017-10-11
*/
#include "h5test.h"
@@ -72,9 +69,6 @@
* JSVERIFY_NOT() - long-int inequality check; prints
* JSVERIFY_STR() - string equality check; prints
*
- * Programmer: Jacob Smith
- * 2017-10-24
- *
*****************************************************************************/
/*----------------------------------------------------------------------------
@@ -99,9 +93,6 @@
*
* *FAILED* at somefile.c:12 in function_name()...
*
- * Programmer: Jacob Smith
- * 2017-10-24
- *
*----------------------------------------------------------------------------
*/
#define JSFAILED_AT() \
@@ -127,9 +118,6 @@
* 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) \
@@ -155,9 +143,6 @@
* However, `JSVERIFY(5, my_op(), "bad return")` may be even clearer.
* (see JSVERIFY)
*
- * Programmer: Jacob Smith
- * 2017-10-24
- *
*----------------------------------------------------------------------------
*/
#if 0 /* UNUSED */
@@ -188,9 +173,6 @@
* ! Expected 425
* ! Actual 3
*
- * Programmer: Jacob Smith
- * 2017-10-24
- *
*----------------------------------------------------------------------------
*/
static inline void
@@ -233,9 +215,6 @@ jserr_long(long expected, long actual, const char *reason)
* !!! Actual:
* not what I expected at all
*
- * Programmer: Jacob Smith
- * 2017-10-24
- *
*----------------------------------------------------------------------------
*/
static inline void
@@ -268,9 +247,6 @@ jserr_str(const char *expected, const char *actual, const char *reason)
* (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) \
@@ -290,9 +266,6 @@ jserr_str(const char *expected, const char *actual, const char *reason)
* (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) \
@@ -312,9 +285,6 @@ jserr_str(const char *expected, const char *actual, const char *reason)
* (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) \
@@ -332,8 +302,6 @@ jserr_str(const char *expected, const char *actual, const char *reason)
/*----------------------------------------------------------------------------
* Macro: JSVERIFY()
* See: JSVERIFY documentation above.
- * Programmer: Jacob Smith
- * 2017-10-14
*----------------------------------------------------------------------------
*/
#define JSVERIFY(actual, expected, reason) \
@@ -345,8 +313,6 @@ jserr_str(const char *expected, const char *actual, const char *reason)
/*----------------------------------------------------------------------------
* Macro: JSVERIFY_NOT()
* See: JSVERIFY_NOT documentation above.
- * Programmer: Jacob Smith
- * 2017-10-14
*----------------------------------------------------------------------------
*/
#define JSVERIFY_NOT(actual, expected, reason) \
@@ -358,8 +324,6 @@ jserr_str(const char *expected, const char *actual, const char *reason)
/*----------------------------------------------------------------------------
* Macro: JSVERIFY_STR()
* See: JSVERIFY_STR documentation above.
- * Programmer: Jacob Smith
- * 2017-10-14
*----------------------------------------------------------------------------
*/
#define JSVERIFY_STR(actual, expected, reason) \
@@ -424,9 +388,6 @@ H5FD_ros3_fapl_t anonymous_fa = {H5FD_CURR_ROS3_FAPL_T_VERSION, FALSE, "", "", "
* PASSED : 0
* FAILED : 1
*
- * Programmer: Jacob Smith
- * 2017-10-23
- *
*---------------------------------------------------------------------------
*/
static int
@@ -650,9 +611,6 @@ error:
* Return: Success: 0
* Failure: 1
*
- * Programmer: John Mainzer
- * 7/12/17
- *
*-------------------------------------------------------------------------
*/
static int
@@ -725,9 +683,6 @@ error:
* PASSED : 0
* FAILED : 1
*
- * Programmer: Jacob Smith
- * 1027-11-03
- *
*---------------------------------------------------------------------------
*/
static int
@@ -955,9 +910,6 @@ error:
* PASSED : 0
* FAILED : 1
*
- * Programmer: Jacob Smith
- * 2017-11-08
- *
*---------------------------------------------------------------------------
*/
static int
@@ -1078,9 +1030,6 @@ error:
* Demonstrate a not-obvious constraint by the library, preventing
* file read before EoA is set
*
- * Programmer: Jacob Smith
- * 2018-01-26
- *
*-----------------------------------------------------------------------------
*/
static int
@@ -1178,9 +1127,6 @@ error:
* PASSED : 0
* FAILED : 1
*
- * Programmer: Jacob Smith
- * 2017-11-06
- *
*---------------------------------------------------------------------------
*/
static int
@@ -1384,9 +1330,6 @@ error:
* PASSED : 0
* FAILED : 1
*
- * Programmer: Jacob Smith
- * 2017-11-06
- *
*---------------------------------------------------------------------------
*/
static int
@@ -1502,9 +1445,6 @@ error:
* PASSED : 0
* FAILED : 1
*
- * Programmer: Jacob Smith
- * 2017-11-06
- *
*---------------------------------------------------------------------------
*/
static int
@@ -1630,9 +1570,6 @@ error:
* PASSED : 0
* FAILED : 1
*
- * Programmer: Jacob Smith
- * 2017-11-07
- *
*---------------------------------------------------------------------------
*/
static int
@@ -1739,9 +1676,6 @@ error:
* Return: Success: 0
* Failure: 1
*
- * Programmer: Jacob Smith
- * 2017-10-23
- *
*-------------------------------------------------------------------------
*/
int