| Line | Branch | Exec | Source |
|---|---|---|---|
| 1 | #include "gate/gatemain.h" | ||
| 2 | |||
| 3 | #include "gate/tests.h" | ||
| 4 | #include "gate/console.h" | ||
| 5 | |||
| 6 | #include "test_os.h" | ||
| 7 | |||
| 8 | #if defined(GATE_COMPILER_MSVC) && defined(GATE_LEAK_DETECTION) && defined(GATE_SYS_WIN) && !defined(GATE_SYS_WINCE) && (GATE_ARCH != GATE_ARCH_ARM32) && (GATE_ARCH != GATE_ARCH_ARM64) | ||
| 9 | # include <vld.h> | ||
| 10 | #endif | ||
| 11 | |||
| 12 | static gate_test_case_t test_cases[] = | ||
| 13 | { | ||
| 14 | { "os", &test_os } | ||
| 15 | }; | ||
| 16 | static gate_size_t test_cases_count = sizeof(test_cases) / sizeof(test_cases[0]); | ||
| 17 | |||
| 18 | 1 | int gate_main(char const* program, char const* const* arguments, gate_size_t argcount, gate_uintptr_t apphandle) | |
| 19 | { | ||
| 20 | GATE_UNUSED_ARG(program); | ||
| 21 | GATE_UNUSED_ARG(apphandle); | ||
| 22 | 1 | return gate_test_main(test_cases, test_cases_count, arguments, argcount); | |
| 23 | } | ||
| 24 |