Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
declare portable snprintf and vsnprintf functions for Visual C++ 7
[simgrid.git] / src / simgrid_units_main.c
1 /*******************************/
2 /* GENERATED FILE, DO NOT EDIT */
3 /*******************************/
4
5 #include <stdio.h>
6
7 #include "xbt.h"
8
9 extern xbt_test_unit_t _xbt_current_unit;
10
11 /* SGU: BEGIN PROTOTYPES */
12   /* SGU: BEGIN FILE xbt/cunit.c */
13     void test_expected_failure(void);
14   /* SGU: END FILE */
15
16   /* SGU: BEGIN FILE xbt/ex.c */
17     void test_controlflow(void);
18     void test_value(void);
19     void test_variables(void);
20     void test_cleanup(void);
21   /* SGU: END FILE */
22
23   /* SGU: BEGIN FILE xbt/dynar.c */
24     void test_dynar_int(void);
25     void test_dynar_double(void);
26     void test_dynar_string(void);
27     void test_dynar_sync_int(void);
28   /* SGU: END FILE */
29
30   /* SGU: BEGIN FILE xbt/dict.c */
31     void test_dict_basic(void);
32     void test_dict_remove(void);
33     void test_dict_nulldata(void);
34     void test_dict_crash(void);
35     void test_dict_multicrash(void);
36   /* SGU: END FILE */
37
38   /* SGU: BEGIN FILE xbt/set.c */
39     void test_set_basic(void);
40     void test_set_change(void);
41     void test_set_retrieve(void);
42     void test_set_remove(void);
43   /* SGU: END FILE */
44
45   /* SGU: BEGIN FILE xbt/swag.c */
46     void test_swag_basic(void);
47   /* SGU: END FILE */
48
49   /* SGU: BEGIN FILE xbt/xbt_str.c */
50     void test_split_quoted(void);
51   /* SGU: END FILE */
52
53   /* SGU: BEGIN FILE xbt/config.c */
54     void test_config_memuse(void);
55     void test_config_validation(void);
56     void test_config_use(void);
57   /* SGU: END FILE */
58
59 /* SGU: END PROTOTYPES */
60
61 /*******************************/
62 /* GENERATED FILE, DO NOT EDIT */
63 /*******************************/
64
65 int main(int argc, char *argv[]) {
66   xbt_test_suite_t suite; 
67   char selection[1024];
68   int i;
69
70   /* SGU: BEGIN SUITES DECLARATION */
71     /* SGU: BEGIN FILE xbt/cunit.c */
72       suite = xbt_test_suite_by_name("cunit","Testsuite mechanism autotest");
73       xbt_test_suite_push(suite, "expect", test_expected_failure, "expected failures");
74     /* SGU: END FILE */
75
76     /* SGU: BEGIN FILE xbt/ex.c */
77       suite = xbt_test_suite_by_name("xbt_ex","Exception Handling");
78       xbt_test_suite_push(suite, "controlflow", test_controlflow,  "basic nested control flow");
79       xbt_test_suite_push(suite, "value", test_value, "exception value passing");
80       xbt_test_suite_push(suite, "variables", test_variables, "variable value preservation");
81       xbt_test_suite_push(suite, "cleanup", test_cleanup, "cleanup handling");
82     /* SGU: END FILE */
83
84     /* SGU: BEGIN FILE xbt/dynar.c */
85       suite = xbt_test_suite_by_name("dynar","Dynar data container");
86       xbt_test_suite_push(suite, "int", test_dynar_int, "Dynars of integers");
87       xbt_test_suite_push(suite, "double", test_dynar_double, "Dynars of doubles");
88       xbt_test_suite_push(suite, "string", test_dynar_string, "Dyars of strings");
89       xbt_test_suite_push(suite, "synchronized int", test_dynar_sync_int, "Synchronized dynars of integers");
90     /* SGU: END FILE */
91
92     /* SGU: BEGIN FILE xbt/dict.c */
93       suite = xbt_test_suite_by_name("dict","Dict data container");
94       xbt_test_suite_push(suite, "basic", test_dict_basic, "Basic usage: change, retrieve, traverse");
95       xbt_test_suite_push(suite, "remove", test_dict_remove, "Removing some values");
96       xbt_test_suite_push(suite, "nulldata", test_dict_nulldata, "NULL data management");
97       xbt_test_suite_push(suite, "crash", test_dict_crash, "Crash test");
98       xbt_test_suite_push(suite, "multicrash", test_dict_multicrash, "Multi-dict crash test");
99     /* SGU: END FILE */
100
101     /* SGU: BEGIN FILE xbt/set.c */
102       suite = xbt_test_suite_by_name("set","Set data container");
103       xbt_test_suite_push(suite, "basic", test_set_basic, "Basic usage");
104       xbt_test_suite_push(suite, "change", test_set_change, "Changing some values");
105       xbt_test_suite_push(suite, "retrieve", test_set_retrieve, "Retrieving some values");
106       xbt_test_suite_push(suite, "remove", test_set_remove, "Removing some values");
107     /* SGU: END FILE */
108
109     /* SGU: BEGIN FILE xbt/swag.c */
110       suite = xbt_test_suite_by_name("swag","Swag data container");
111       xbt_test_suite_push(suite, "basic", test_swag_basic, "Basic usage");
112     /* SGU: END FILE */
113
114     /* SGU: BEGIN FILE xbt/xbt_str.c */
115       suite = xbt_test_suite_by_name("xbt_str","String Handling");
116       xbt_test_suite_push(suite, "xbt_str_split_quoted", test_split_quoted,  "test the function xbt_str_split_quoted");
117     /* SGU: END FILE */
118
119     /* SGU: BEGIN FILE xbt/config.c */
120       suite = xbt_test_suite_by_name("config","Configuration support");
121       xbt_test_suite_push(suite, "memuse", test_config_memuse, "Alloc and free a config set");
122       xbt_test_suite_push(suite, "validation", test_config_validation, "Validation tests");
123       xbt_test_suite_push(suite, "use", test_config_use, "Data retrieving tests");
124     /* SGU: END FILE */
125
126   /* SGU: END SUITES DECLARATION */
127       
128   xbt_init(&argc,argv);
129     
130   /* Search for the tests to do */
131     selection[0]='\0';
132     for (i=1;i<argc;i++) {
133       if (!strncmp(argv[i],"--tests=",strlen("--tests="))) {
134         char *p=strchr(argv[i],'=')+1;
135         if (selection[0] == '\0') {
136           strcpy(selection, p);
137         } else {
138           strcat(selection, ",");
139           strcat(selection, p);
140         }
141       } else if (!strncmp(argv[i],"--dump-only",strlen("--dump-only"))||
142                  !strncmp(argv[i],"--dump",     strlen("--dump"))) {
143         xbt_test_dump(selection);
144         return 0;
145       } else if (!strncmp(argv[i],"--help",strlen("--help"))) {
146           printf(
147               "Usage: testall [--help] [--tests=selection] [--dump-only]\n\n"
148               "--help: display this help\n"
149               "--dump-only: don't run the tests, but display some debuging info about the tests\n"
150               "--tests=selection: Use argument to select which suites/units/tests to run\n"
151               "                   --tests can be used more than once, and selection may be a comma\n"
152               "                   separated list of directives.\n\n"
153               "Directives are of the form:\n"
154               "   [-]suitename[:unitname]\n\n"
155               "If the first char is a '-', the directive disables its argument instead of enabling it\n"
156               "suitename/unitname is the set of tests to en/disable. If a unitname is not specified,\n"
157               "it applies on any unit.\n\n"
158               "By default, everything is enabled.\n\n"
159               "'all' as suite name apply to all suites.\n\n"
160               "Example 1: \"-toto,+toto:tutu\"\n"
161               "  disables the whole toto testsuite (any unit in it),\n"
162               "  then reenables the tutu unit of the toto test suite.\n\n"
163               "Example 2: \"-all,+toto\"\n"
164               "  Run nothing but the toto suite.\n");
165           return 0;
166       } else {
167         printf("testall: Unknown option: %s\n",argv[i]);
168         return 1;
169       }
170     }
171   /* Got all my tests to do */
172       
173   return xbt_test_run(selection);
174 }
175 /*******************************/
176 /* GENERATED FILE, DO NOT EDIT */
177 /*******************************/
178