diff options
author | 3gg <3gg@shellblade.net> | 2025-08-30 16:53:58 -0700 |
---|---|---|
committer | 3gg <3gg@shellblade.net> | 2025-08-30 16:53:58 -0700 |
commit | 6aaedb813fa11ba0679c3051bc2eb28646b9506c (patch) | |
tree | 34acbfc9840e02cb4753e6306ea7ce978bf8b58e /src/contrib/SDL-3.2.20/test/testautomation_suites.h | |
parent | 8f228ade99dd3d4c8da9b78ade1815c9adf85c8f (diff) |
Update to SDL3
Diffstat (limited to 'src/contrib/SDL-3.2.20/test/testautomation_suites.h')
-rw-r--r-- | src/contrib/SDL-3.2.20/test/testautomation_suites.h | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/src/contrib/SDL-3.2.20/test/testautomation_suites.h b/src/contrib/SDL-3.2.20/test/testautomation_suites.h new file mode 100644 index 0000000..093bb9b --- /dev/null +++ b/src/contrib/SDL-3.2.20/test/testautomation_suites.h | |||
@@ -0,0 +1,43 @@ | |||
1 | /** | ||
2 | * Reference to all test suites. | ||
3 | * | ||
4 | */ | ||
5 | |||
6 | #ifndef _testsuites_h | ||
7 | #define _testsuites_h | ||
8 | |||
9 | #include <SDL3/SDL_test.h> | ||
10 | |||
11 | #define ISFINITE(X) isfinite((float)(X)) | ||
12 | #define ISINF(X) isinf((float)(X)) | ||
13 | #define ISNAN(X) isnan((float)(X)) | ||
14 | |||
15 | /* Test collections */ | ||
16 | extern SDLTest_TestSuiteReference audioTestSuite; | ||
17 | extern SDLTest_TestSuiteReference clipboardTestSuite; | ||
18 | extern SDLTest_TestSuiteReference eventsTestSuite; | ||
19 | extern SDLTest_TestSuiteReference guidTestSuite; | ||
20 | extern SDLTest_TestSuiteReference hintsTestSuite; | ||
21 | extern SDLTest_TestSuiteReference intrinsicsTestSuite; | ||
22 | extern SDLTest_TestSuiteReference joystickTestSuite; | ||
23 | extern SDLTest_TestSuiteReference keyboardTestSuite; | ||
24 | extern SDLTest_TestSuiteReference logTestSuite; | ||
25 | extern SDLTest_TestSuiteReference mainTestSuite; | ||
26 | extern SDLTest_TestSuiteReference mathTestSuite; | ||
27 | extern SDLTest_TestSuiteReference mouseTestSuite; | ||
28 | extern SDLTest_TestSuiteReference pixelsTestSuite; | ||
29 | extern SDLTest_TestSuiteReference platformTestSuite; | ||
30 | extern SDLTest_TestSuiteReference propertiesTestSuite; | ||
31 | extern SDLTest_TestSuiteReference rectTestSuite; | ||
32 | extern SDLTest_TestSuiteReference renderTestSuite; | ||
33 | extern SDLTest_TestSuiteReference iostrmTestSuite; | ||
34 | extern SDLTest_TestSuiteReference sdltestTestSuite; | ||
35 | extern SDLTest_TestSuiteReference stdlibTestSuite; | ||
36 | extern SDLTest_TestSuiteReference subsystemsTestSuite; | ||
37 | extern SDLTest_TestSuiteReference surfaceTestSuite; | ||
38 | extern SDLTest_TestSuiteReference timeTestSuite; | ||
39 | extern SDLTest_TestSuiteReference timerTestSuite; | ||
40 | extern SDLTest_TestSuiteReference videoTestSuite; | ||
41 | extern SDLTest_TestSuiteReference blitTestSuite; | ||
42 | |||
43 | #endif | ||