| 1 | #pragma once |
|---|---|
| 2 | #include <test/test.h> |
| 3 | |
| 4 | #include <crypto/prng.h> |
| 5 | #include <log.h> |
| 6 | #include <mem/alloc.h> |
| 7 | #include <sch/sched.h> |
| 8 | #include <smp/core.h> |
| 9 | #include <stack_depot.h> |
| 10 | #include <stdatomic.h> |
| 11 | #include <string.h> |
| 12 | #include <thread/thread.h> |
| 13 | |
| 14 | #include <parse.h> |
| 15 | |
| 16 | TEST_GROUP_DEFINE(log); |
| 17 | TEST_GROUP_DEFINE(stack_depot); |
| 18 | TEST_GROUP_DEFINE(parse); |
| 19 | TEST_GROUP_DEFINE(string); |
| 20 |