-
-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathtests.c
More file actions
40 lines (37 loc) · 789 Bytes
/
tests.c
File metadata and controls
40 lines (37 loc) · 789 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#include "error/error.h"
#include "chrono/tests.c"
#include "dsl/tests.c"
#include "dynamic/tests.c"
#include "error/tests.c"
#include "fix/tests.c"
#include "list/tests.c"
#include "macro/tests.c"
#include "malloc1/tests.c"
#include "malloc2/tests.c"
#include "reflect/tests.c"
#include "set/tests.c"
#include "slog/tests.c"
#include "stream1/tests.c"
#include "task/tests.c"
#include "vector/tests.c"
#include "vm/tests.c"
int main() {
chrono_tests();
dsl_tests();
dynamic_tests();
error_tests();
fix_tests();
list_tests();
macro_tests();
malloc1_tests();
malloc2_tests();
reflect_tests();
set_tests();
slog_tests();
stream1_tests();
task_tests();
vector_tests();
vm_tests();
hc_errors_deinit();
return 0;
}