source: trunk/Softwares/Basic_test.or32/src/c/exec_1.c @ 81

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