| 1848 | } |
| 1849 | |
| 1850 | static void test_thread() |
| 1851 | { |
| 1852 | Thread thread; |
| 1853 | ENSURE(!thread.is_running()); |
| 1854 | |
| 1855 | thread.start([](void *) { return 0xbadc0d3; }, NULL); |
| 1856 | thread.stop(); |
| 1857 | ENSURE(thread.exit_code() == 0xbadc0d3); |
| 1858 | } |
| 1859 | |
| 1860 | static void test_process() |
| 1861 | { |
nothing calls this directly
no test coverage detected