Testing out implementation for skipping unsupported test
automatically.
This commit is contained in:
parent
8190ae317e
commit
e16810661d
7 changed files with 101 additions and 10 deletions
|
@ -21,8 +21,6 @@
|
|||
#ifndef _SDL_TEST_H
|
||||
#define _SDL_TEST_H
|
||||
|
||||
#include <SDL/SDL.h>
|
||||
|
||||
#include "logger.h"
|
||||
|
||||
#include "common/common.h"
|
||||
|
@ -39,6 +37,7 @@ extern AssertFp testAssert;
|
|||
#define TEST_ENABLED 1
|
||||
#define TEST_DISABLED 0
|
||||
|
||||
//! Definition of all the possible test results
|
||||
#define TEST_RESULT_PASS 0
|
||||
#define TEST_RESULT_FAILURE 1
|
||||
#define TEST_RESULT_NO_ASSERT 2
|
||||
|
@ -46,6 +45,9 @@ extern AssertFp testAssert;
|
|||
#define TEST_RESULT_KILLED 4
|
||||
#define TEST_RESULT_SETUP_FAILURE 5
|
||||
|
||||
//! Definitions for test requirements
|
||||
#define TEST_REQUIRES_AUDIO 1
|
||||
|
||||
/*!
|
||||
* Holds information about a test case
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue