Added the automation test to the autoconf build system
--HG-- rename : test/tests/testclipboard.c => test/testautomation_clipboard.c rename : test/tests/testplatform.c => test/testautomation_platform.c rename : test/tests/testrect.c => test/testautomation_rect.c rename : test/tests/testrender.c => test/testautomation_render.c rename : test/tests/testrwops.c => test/testautomation_rwops.c rename : test/tests/testsuites.h => test/testautomation_suites.h
This commit is contained in:
parent
b11f967898
commit
fff2381298
8 changed files with 10 additions and 1 deletions
40
test/testautomation_suites.h
Normal file
40
test/testautomation_suites.h
Normal file
|
@ -0,0 +1,40 @@
|
|||
/**
|
||||
* Reference to all test suites.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _testsuites_h
|
||||
#define _testsuites_h
|
||||
|
||||
#include "SDL_test.h"
|
||||
|
||||
// Test collections
|
||||
//extern SDLTest_TestSuiteReference audioTestSuite;
|
||||
extern SDLTest_TestSuiteReference clipboardTestSuite;
|
||||
//extern SDLTest_TestSuiteReference eventsTestSuite;
|
||||
//extern SDLTest_TestSuiteReference keyboardTestSuite;
|
||||
extern SDLTest_TestSuiteReference platformTestSuite;
|
||||
extern SDLTest_TestSuiteReference rectTestSuite;
|
||||
extern SDLTest_TestSuiteReference renderTestSuite;
|
||||
extern SDLTest_TestSuiteReference rwopsTestSuite;
|
||||
//extern SDLTest_TestSuiteReference surfaceTestSuite;
|
||||
//extern SDLTest_TestSuiteReference syswmTestSuite;
|
||||
//extern SDLTest_TestSuiteReference videoTestSuite;
|
||||
|
||||
// All test suites
|
||||
SDLTest_TestSuiteReference *testSuites[] = {
|
||||
// &audioTestSuite,
|
||||
&clipboardTestSuite,
|
||||
// &eventsTestSuite,
|
||||
// &keyboardTestSuite,
|
||||
&platformTestSuite,
|
||||
&rectTestSuite,
|
||||
&renderTestSuite,
|
||||
&rwopsTestSuite,
|
||||
// &surfaceTestSuite,
|
||||
// &syswmTestSuite,
|
||||
// &videoTestSuite,
|
||||
NULL
|
||||
};
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue