-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest-all.cpp
More file actions
57 lines (54 loc) · 1.33 KB
/
test-all.cpp
File metadata and controls
57 lines (54 loc) · 1.33 KB
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
#include <stdio.h"
extern int test_1();
extern int test_2();
extern int test_3();
extern int test_4();
extern int test_5();
extern int test_6();
extern int test_7();
extern int test_8();
extern int test_9();
extern int test_10();
extern int test_11();
extern int test_12();
int main(int, char**) {
int ret = 0;
ret = test_1();
if (ret == 0)
printf("test 1 success\n");
ret = test_2();
if (ret == 0)
printf("test 2 success\n");
ret = test_3();
if (ret == 0)
printf("test 3 success\n");
ret = test_4();
if (ret == 0)
printf("test 4 success\n");
ret = test_5();
if (ret == 0)
printf("test 5 success\n");
ret = test_6();
if (ret == 0)
printf("test 6 success\n");
ret = test_7();
if (ret == 0)
printf("test 7 success\n");
ret = test_8();
if (ret == 0)
printf("test 8 success\n");
ret = test_9();
if (ret == 0)
printf("test 9 success\n");
ret = test_10();
if (ret == 0)
printf("test 10 success\n");
ret = test_11();
if (ret == 0)
printf("test 11 success\n");
ret = test_12();
if (ret == 0)
printf("test 12 success\n");
ret = printf("** all test success.\n");
return 0;
}