-
Notifications
You must be signed in to change notification settings - Fork 21
/
tests.c
82 lines (67 loc) · 2.23 KB
/
tests.c
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#include <aiv_unit_test.h>
#include <aiv_gb.h>
int tests_succeded = 0;
int tests_failed = 0;
int tests_executed = 0;
void aiv_gb_tests_run_opcodes_00();
void aiv_gb_tests_run_opcodes_10();
void aiv_gb_tests_run_opcodes_20();
void aiv_gb_tests_run_opcodes_30();
void aiv_gb_tests_run_opcodes_40();
void aiv_gb_tests_run_opcodes_50();
void aiv_gb_tests_run_opcodes_60();
void aiv_gb_tests_run_opcodes_70();
void aiv_gb_tests_run_opcodes_80();
void aiv_gb_tests_run_opcodes_90();
void aiv_gb_tests_run_opcodes_a0();
void aiv_gb_tests_run_opcodes_b0();
void aiv_gb_tests_run_opcodes_c0();
void aiv_gb_tests_run_opcodes_d0();
void aiv_gb_tests_run_opcodes_e0();
void aiv_gb_tests_run_opcodes_f0();
//void aiv_gb_tests_run_prefix_cb_00();
//void aiv_gb_tests_run_prefix_cb_10();
//void aiv_gb_tests_run_prefix_cb_20();
//void aiv_gb_tests_run_prefix_cb_30();
void aiv_gb_tests_run_prefix_cb_40();
void aiv_gb_tests_run_prefix_cb_50();
void aiv_gb_tests_run_prefix_cb_60();
void aiv_gb_tests_run_prefix_cb_70();
void aiv_gb_tests_func_roberto();
void aiv_gb_tests_func_virginia();
void aiv_gb_tests_func_massimo();
void aiv_gb_tests_run_func_alessio();
void aiv_gb_tests_func_pierettini();
int main(int argc, char **argv)
{
aiv_gb_tests_run_opcodes_00();
aiv_gb_tests_run_opcodes_10();
aiv_gb_tests_run_opcodes_20();
aiv_gb_tests_run_opcodes_30();
aiv_gb_tests_run_opcodes_40();
aiv_gb_tests_run_opcodes_50();
aiv_gb_tests_run_opcodes_60();
aiv_gb_tests_run_opcodes_70();
aiv_gb_tests_run_opcodes_80();
aiv_gb_tests_run_opcodes_90();
aiv_gb_tests_run_opcodes_a0();
aiv_gb_tests_run_opcodes_b0();
aiv_gb_tests_run_opcodes_c0();
aiv_gb_tests_run_opcodes_d0();
aiv_gb_tests_run_opcodes_e0();
aiv_gb_tests_run_opcodes_f0();
//aiv_gb_tests_run_prefix_cb_00();
//aiv_gb_tests_run_prefix_cb_10();
//aiv_gb_tests_run_prefix_cb_20();
//aiv_gb_tests_run_prefix_cb_30();
aiv_gb_tests_run_prefix_cb_40();
aiv_gb_tests_run_prefix_cb_50();
aiv_gb_tests_run_prefix_cb_60();
aiv_gb_tests_run_prefix_cb_70();
aiv_gb_tests_func_roberto();
aiv_gb_tests_func_roberto();
aiv_gb_tests_func_massimo();
aiv_gb_tests_run_func_alessio();
PRINT_TEST_RESULTS();
return 0;
}