More non C89 compliant comments

This commit is contained in:
Gabriel Jacobo 2013-08-20 20:34:40 -03:00
parent 25c9f2cd30
commit 5e78879e76
28 changed files with 252 additions and 248 deletions

View file

@ -99,8 +99,8 @@
#define HAVE_SQRT 1
#define HAVE_SETJMP 1
#define HAVE_NANOSLEEP 1
//#define HAVE_SYSCONF 1
//#define HAVE_SIGACTION 1
/*#define HAVE_SYSCONF 1*/
/*#define HAVE_SIGACTION 1*/
/* PSP isn't that sophisticated */

View file

@ -43,30 +43,30 @@ extern "C" {
#endif
//! Definitions for test case structures
/*! Definitions for test case structures*/
#define TEST_ENABLED 1
#define TEST_DISABLED 0
//! Definition of all the possible test return values of the test case method
/*! Definition of all the possible test return values of the test case method*/
#define TEST_ABORTED -1
#define TEST_STARTED 0
#define TEST_COMPLETED 1
#define TEST_SKIPPED 2
//! Definition of all the possible test results for the harness
/*! Definition of all the possible test results for the harness*/
#define TEST_RESULT_PASSED 0
#define TEST_RESULT_FAILED 1
#define TEST_RESULT_NO_ASSERT 2
#define TEST_RESULT_SKIPPED 3
#define TEST_RESULT_SETUP_FAILURE 4
//!< Function pointer to a test case setup function (run before every test)
/*!< Function pointer to a test case setup function (run before every test)*/
typedef void (*SDLTest_TestCaseSetUpFp)(void *arg);
//!< Function pointer to a test case function
/*!< Function pointer to a test case function*/
typedef int (*SDLTest_TestCaseFp)(void *arg);
//!< Function pointer to a test case teardown function (run after every test)
/*!< Function pointer to a test case teardown function (run after every test)*/
typedef void (*SDLTest_TestCaseTearDownFp)(void *arg);
/**