| 18 | #include "vm/tests.c" |
| 19 | |
| 20 | int main() { |
| 21 | chrono_tests(); |
| 22 | dsl_tests(); |
| 23 | dynamic_tests(); |
| 24 | error_tests(); |
| 25 | fix_tests(); |
| 26 | list_tests(); |
| 27 | macro_tests(); |
| 28 | malloc1_tests(); |
| 29 | malloc2_tests(); |
| 30 | reflect_tests(); |
| 31 | set_tests(); |
| 32 | slog_tests(); |
| 33 | stream1_tests(); |
| 34 | task_tests(); |
| 35 | vector_tests(); |
| 36 | vm_tests(); |
| 37 | |
| 38 | hc_errors_deinit(); |
| 39 | return 0; |
| 40 | } |
nothing calls this directly
no test coverage detected