Last change
on this file since 106 was
81,
checked in by rosiere, 17 years ago
|
- Finish Environment (and test)
- Continue predictor_unit
- Add external tools
- svn keyword "Id" set
|
-
Property svn:keywords set to
Id
|
File size:
417 bytes
|
Line | |
---|
1 | #include "bool.h" |
---|
2 | #include "func_test.h" |
---|
3 | |
---|
4 | bool exec_3() |
---|
5 | { |
---|
6 | bool res = false; |
---|
7 | |
---|
8 | printf("<exec_3>\n"); |
---|
9 | |
---|
10 | res = (test_05() && |
---|
11 | test_09() && |
---|
12 | test_01() && |
---|
13 | test_10() && |
---|
14 | test_03() && |
---|
15 | test_12() && |
---|
16 | test_02() && |
---|
17 | test_07() && |
---|
18 | test_13() && |
---|
19 | test_04() && |
---|
20 | test_11() && |
---|
21 | test_08() && |
---|
22 | test_06() && |
---|
23 | 1); |
---|
24 | |
---|
25 | if (res == false) |
---|
26 | printf("<exec_3> Ko\n"); |
---|
27 | else |
---|
28 | printf("<exec_3> Ok\n"); |
---|
29 | |
---|
30 | return res; |
---|
31 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.