]> git.xonotic.org Git - xonotic/gmqcc.git/blob - test.c
Handle encoding errors for platform_vasprintf
[xonotic/gmqcc.git] / test.c
1 /*
2  * Copyright (C) 2012, 2013, 2014
3  *     Dale Weiler
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a copy of
6  * this software and associated documentation files (the "Software"), to deal in
7  * the Software without restriction, including without limitation the rights to
8  * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
9  * of the Software, and to permit persons to whom the Software is furnished to do
10  * so, subject to the following conditions:
11  *
12  * The above copyright notice and this permission notice shall be included in all
13  * copies or substantial portions of the Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21  * SOFTWARE.
22  */
23 #define GMQCC_PLATFORM_HEADER /* TODO: eliminate! */
24 #include <stdlib.h>
25 #include <string.h>
26
27 #include "gmqcc.h"
28 #include "platform.h"
29
30 static const char *task_bins[] = {
31     "./gmqcc",
32     "./qcvm"
33 };
34
35 /*
36  * TODO: Windows version
37  * this implements a unique bi-directional popen-like function that
38  * allows reading data from both stdout and stderr. And writing to
39  * stdin :)
40  *
41  * Example of use:
42  * FILE *handles[3] = task_popen("ls", "-l", "r");
43  * if (!handles) { perror("failed to open stdin/stdout/stderr to ls");
44  * // handles[0] = stdin
45  * // handles[1] = stdout
46  * // handles[2] = stderr
47  *
48  * task_pclose(handles); // to close
49  */
50 #ifndef _WIN32
51 #include <sys/types.h>
52 #include <sys/wait.h>
53 #include <dirent.h>
54 #include <unistd.h>
55 typedef struct {
56     fs_file_t *handles[3];
57     int        pipes  [3];
58
59     int stderr_fd;
60     int stdout_fd;
61     int pid;
62 } popen_t;
63
64 static fs_file_t **task_popen(const char *command, const char *mode) {
65     int     inhandle  [2];
66     int     outhandle [2];
67     int     errhandle [2];
68     int     trypipe;
69
70     popen_t *data = (popen_t*)mem_a(sizeof(popen_t));
71
72     /*
73      * Parse the command now into a list for execv, this is a pain
74      * in the ass.
75      */
76     char  *line = (char*)command;
77     char **argv = NULL;
78     {
79
80         while (*line != '\0') {
81             while (*line == ' ' || *line == '\t' || *line == '\n')
82                 *line++ = '\0';
83             vec_push(argv, line);
84
85             while (*line != '\0' && *line != ' ' &&
86                    *line != '\t' && *line != '\n') line++;
87         }
88         vec_push(argv, NULL);
89     }
90
91
92     if ((trypipe = pipe(inhandle))  < 0) goto task_popen_error_0;
93     if ((trypipe = pipe(outhandle)) < 0) goto task_popen_error_1;
94     if ((trypipe = pipe(errhandle)) < 0) goto task_popen_error_2;
95
96     if ((data->pid = fork()) > 0) {
97         /* parent */
98         close(inhandle  [0]);
99         close(outhandle [1]);
100         close(errhandle [1]);
101
102         data->pipes  [0] = inhandle [1];
103         data->pipes  [1] = outhandle[0];
104         data->pipes  [2] = errhandle[0];
105
106         data->handles[0] = (fs_file_t*)fdopen(inhandle [1], "w");
107         data->handles[1] = (fs_file_t*)fdopen(outhandle[0], mode);
108         data->handles[2] = (fs_file_t*)fdopen(errhandle[0], mode);
109
110         /* sigh */
111         vec_free(argv);
112         return data->handles;
113     } else if (data->pid == 0) {
114         /* child */
115         close(inhandle [1]);
116         close(outhandle[0]);
117         close(errhandle[0]);
118
119         /* see piping documentation for this sillyness :P */
120         dup2(inhandle [0], 0);
121         dup2(outhandle[1], 1);
122         dup2(errhandle[1], 2);
123
124         execvp(*argv, argv);
125         exit(EXIT_FAILURE);
126     } else {
127         /* fork failed */
128         goto task_popen_error_3;
129     }
130
131 task_popen_error_3: close(errhandle[0]), close(errhandle[1]);
132 task_popen_error_2: close(outhandle[0]), close(outhandle[1]);
133 task_popen_error_1: close(inhandle [0]), close(inhandle [1]);
134 task_popen_error_0:
135
136     vec_free(argv);
137     return NULL;
138 }
139
140 static int task_pclose(fs_file_t **handles) {
141     popen_t *data   = (popen_t*)handles;
142     int      status = 0;
143
144     close(data->pipes[0]); /* stdin  */
145     close(data->pipes[1]); /* stdout */
146     close(data->pipes[2]); /* stderr */
147
148     waitpid(data->pid, &status, 0);
149
150     mem_d(data);
151
152     return status;
153 }
154 #else
155     #include <sys/stat.h>
156     typedef struct {
157         fs_file_t *handles[3];
158         char       name_err[L_tmpnam];
159         char       name_out[L_tmpnam];
160     } popen_t;
161
162     static fs_file_t **task_popen(const char *command, const char *mode) {
163         char    *cmd  = NULL;
164         popen_t *open = (popen_t*)mem_a(sizeof(popen_t));
165
166         tmpnam(open->name_err);
167         tmpnam(open->name_out);
168
169         (void)mode; /* excluded */
170
171         util_asprintf(&cmd, "%s -redirout=%s -redirerr=%s", command, open->name_out, open->name_err);
172
173         system(cmd); /* HACK */
174         open->handles[0] = NULL;
175         open->handles[1] = fs_file_open(open->name_out, "r");
176         open->handles[2] = fs_file_open(open->name_err, "r");
177
178         mem_d(cmd);
179
180         return open->handles;
181     }
182
183     static int task_pclose(fs_file_t **files) {
184         popen_t *open = ((popen_t*)files);
185
186         fs_file_close(files[1]);
187         fs_file_close(files[2]);
188
189         remove(open->name_err);
190         remove(open->name_out);
191
192         mem_d(open);
193
194         return EXIT_SUCCESS;
195     }
196 #   define popen _popen
197 #   define pclose _pclose
198 #endif /*! _WIN32 */
199
200 #define TASK_COMPILE    0
201 #define TASK_EXECUTE    1
202 /*
203  * Task template system:
204  *  templates are rules for a specific test, used to create a "task" that
205  *  is executed with those set of rules (arguments, and what not). Tests
206  *  that don't have a template with them cannot become tasks, since without
207  *  the information for that test there is no way to properly "test" them.
208  *  Rules for these templates are described in a template file, using a
209  *  task template language.
210  *
211  *  The language is a basic finite statemachine, top-down single-line
212  *  description language.
213  *
214  *  The languge is composed entierly of "tags" which describe a string of
215  *  text for a task.  Think of it much like a configuration file.  Except
216  *  it's been designed to allow flexibility and future support for prodecual
217  *  semantics.
218  *
219  *  The following "tags" are suported by the language
220  *
221  *      D:
222  *          Used to set a description of the current test, this must be
223  *          provided, this tag is NOT optional.
224  *
225  *      T:
226  *          Used to set the procedure for the given task, there are two
227  *          options for this:
228  *              -compile
229  *                  This simply performs compilation only
230  *              -execute
231  *                  This will perform compilation and execution
232  *              -fail
233  *                  This will perform compilation, but requires
234  *                  the compilation to fail in order to succeed.
235  *
236  *          This must be provided, this tag is NOT optional.
237  *
238  *      C:
239  *          Used to set the compilation flags for the given task, this
240  *          must be provided, this tag is NOT optional.
241  *
242  *      F:  Used to set some test suite flags, currently the only option
243  *          is -no-defs (to including of defs.qh)
244  *
245  *      E:
246  *          Used to set the execution flags for the given task. This tag
247  *          must be provided if T == -execute, otherwise it's erroneous
248  *          as compilation only takes place.
249  *
250  *      M:
251  *          Used to describe a string of text that should be matched from
252  *          the output of executing the task.  If this doesn't match the
253  *          task fails.  This tag must be provided if T == -execute, otherwise
254  *          it's erroneous as compilation only takes place.
255  *
256  *      I:
257  *          Used to specify the INPUT source file to operate on, this must be
258  *          provided, this tag is NOT optional
259  *
260  *
261  *  Notes:
262  *      These tags have one-time use, using them more than once will result
263  *      in template compilation errors.
264  *
265  *      Lines beginning with # or // in the template file are comments and
266  *      are ignored by the template parser.
267  *
268  *      Whitespace is optional, with exception to the colon ':' between the
269  *      tag and it's assignment value/
270  *
271  *      The template compiler will detect erronrous tags (optional tags
272  *      that need not be set), as well as missing tags, and error accordingly
273  *      this will result in the task failing.
274  */
275 typedef struct {
276     char  *description;
277     char  *compileflags;
278     char  *executeflags;
279     char  *proceduretype;
280     char  *sourcefile;
281     char  *tempfilename;
282     char **comparematch;
283     char  *rulesfile;
284     char  *testflags;
285 } task_template_t;
286
287 /*
288  * This is very much like a compiler code generator :-).  This generates
289  * a value from some data observed from the compiler.
290  */
291 static bool task_template_generate(task_template_t *tmpl, char tag, const char *file, size_t line, char *value, size_t *pad) {
292     size_t desclen = 0;
293     size_t filelen = 0;
294     char **destval = NULL;
295
296     if (!tmpl)
297         return false;
298
299     switch(tag) {
300         case 'D': destval = &tmpl->description;    break;
301         case 'T': destval = &tmpl->proceduretype;  break;
302         case 'C': destval = &tmpl->compileflags;   break;
303         case 'E': destval = &tmpl->executeflags;   break;
304         case 'I': destval = &tmpl->sourcefile;     break;
305         case 'F': destval = &tmpl->testflags;      break;
306         default:
307             con_printmsg(LVL_ERROR, __FILE__, __LINE__, 0, "internal error",
308                 "invalid tag `%c:` during code generation\n",
309                 tag
310             );
311             return false;
312     }
313
314     /*
315      * Ensure if for the given tag, there already exists a
316      * assigned value.
317      */
318     if (*destval) {
319         con_printmsg(LVL_ERROR, file, line, 0, /*TODO: column for match*/ "compile error",
320             "tag `%c:` already assigned value: %s\n",
321             tag, *destval
322         );
323         return false;
324     }
325
326     /*
327      * Strip any whitespace that might exist in the value for assignments
328      * like "D:      foo"
329      */
330     if (value && *value && (*value == ' ' || *value == '\t'))
331         value++;
332     else if (!value)
333         exit(EXIT_FAILURE);
334
335     /*
336      * Value will contain a newline character at the end, we need to strip
337      * this otherwise kaboom, seriously, kaboom :P
338      */
339     if (strchr(value, '\n'))
340         *strrchr(value, '\n')='\0';
341
342     /*
343      * Now allocate and set the actual value for the specific tag. Which
344      * was properly selected and can be accessed with *destval.
345      */
346     *destval = util_strdup(value);
347
348
349     if (*destval == tmpl->description) {
350         /*
351          * Create some padding for the description to align the
352          * printing of the rules file.
353          */
354         if ((desclen = strlen(tmpl->description)) > pad[0])
355             pad[0] = desclen;
356     }
357
358     if ((filelen = strlen(file)) > pad[2])
359         pad[2] = filelen;
360
361     return true;
362 }
363
364 static bool task_template_parse(const char *file, task_template_t *tmpl, fs_file_t *fp, size_t *pad) {
365     char  *data = NULL;
366     char  *back = NULL;
367     size_t size = 0;
368     size_t line = 1;
369
370     if (!tmpl)
371         return false;
372
373     /* top down parsing */
374     while (fs_file_getline(&back, &size, fp) != FS_FILE_EOF) {
375         /* skip whitespace */
376         data = back;
377         if (*data && (*data == ' ' || *data == '\t'))
378             data++;
379
380         switch (*data) {
381             /*
382              * Handle comments inside task tmpl files.  We're strict
383              * about the language for fun :-)
384              */
385             case '/':
386                 if (data[1] != '/') {
387                     con_printmsg(LVL_ERROR, file, line, 0, /*TODO: column for match*/ "tmpl parse error",
388                         "invalid character `/`, perhaps you meant `//` ?");
389
390                     mem_d(back);
391                     return false;
392                 }
393             case '#':
394                 break;
395
396             /*
397              * Empty newlines are acceptable as well, so we handle that here
398              * despite being just odd since there should't be that many
399              * empty lines to begin with.
400              */
401             case '\r':
402             case '\n':
403                 break;
404
405
406             /*
407              * Now begin the actual "tag" stuff.  This works as you expect
408              * it to.
409              */
410             case 'D':
411             case 'T':
412             case 'C':
413             case 'E':
414             case 'I':
415             case 'F':
416                 if (data[1] != ':') {
417                     con_printmsg(LVL_ERROR, file, line, 0, /*TODO: column for match*/ "tmpl parse error",
418                         "expected `:` after `%c`",
419                         *data
420                     );
421                     goto failure;
422                 }
423                 if (!task_template_generate(tmpl, *data, file, line, &data[3], pad)) {
424                     con_printmsg(LVL_ERROR, file, line, 0, /*TODO: column for match*/ "tmpl compile error",
425                         "failed to generate for given task\n"
426                     );
427                     goto failure;
428                 }
429                 break;
430
431             /*
432              * Match requires it's own system since we allow multiple M's
433              * for multi-line matching.
434              */
435             case 'M':
436             {
437                 char *value = &data[3];
438                 if (data[1] != ':') {
439                     con_printmsg(LVL_ERROR, file, line, 0, /*TODO: column for match*/ "tmpl parse error",
440                         "expected `:` after `%c`",
441                         *data
442                     );
443                     goto failure;
444                 }
445
446                 /*
447                  * Value will contain a newline character at the end, we need to strip
448                  * this otherwise kaboom, seriously, kaboom :P
449                  */
450                 if (strrchr(value, '\n'))
451                     *strrchr(value, '\n')='\0';
452                 else /* cppcheck: possible null pointer dereference */
453                     exit(EXIT_FAILURE);
454
455                 vec_push(tmpl->comparematch, util_strdup(value));
456
457                 break;
458             }
459
460             default:
461                 con_printmsg(LVL_ERROR, file, line, 0, /*TODO: column for match*/ "tmpl parse error",
462                     "invalid tag `%c`", *data
463                 );
464                 goto failure;
465             /* no break required */
466         }
467
468         /* update line and free old sata */
469         line++;
470         mem_d(back);
471         back = NULL;
472     }
473     if (back)
474         mem_d(back);
475     return true;
476
477 failure:
478     mem_d (back);
479     return false;
480 }
481
482 /*
483  * Nullifies the template data: used during initialization of a new
484  * template and free.
485  */
486 static void task_template_nullify(task_template_t *tmpl) {
487     if (!tmpl)
488         return;
489
490     tmpl->description    = NULL;
491     tmpl->proceduretype  = NULL;
492     tmpl->compileflags   = NULL;
493     tmpl->executeflags   = NULL;
494     tmpl->comparematch   = NULL;
495     tmpl->sourcefile     = NULL;
496     tmpl->tempfilename   = NULL;
497     tmpl->rulesfile      = NULL;
498     tmpl->testflags      = NULL;
499 }
500
501 static task_template_t *task_template_compile(const char *file, const char *dir, size_t *pad) {
502     /* a page should be enough */
503     char             fullfile[4096];
504     size_t           filepadd = 0;
505     fs_file_t       *tempfile = NULL;
506     task_template_t *tmpl     = NULL;
507
508     util_snprintf(fullfile,    sizeof(fullfile), "%s/%s", dir, file);
509
510     tempfile = fs_file_open(fullfile, "r");
511     tmpl     = (task_template_t*)mem_a(sizeof(task_template_t));
512     task_template_nullify(tmpl);
513
514     /*
515      * Create some padding for the printing to align the
516      * printing of the rules file to the console.
517      */
518     if ((filepadd = strlen(fullfile)) > pad[1])
519         pad[1] = filepadd;
520
521     tmpl->rulesfile = util_strdup(fullfile);
522
523     /*
524      * Esnure the file even exists for the task, this is pretty useless
525      * to even do.
526      */
527     if (!tempfile) {
528         con_err("template file: %s does not exist or invalid permissions\n",
529             file
530         );
531         goto failure;
532     }
533
534     if (!task_template_parse(file, tmpl, tempfile, pad)) {
535         con_err("template parse error: error during parsing\n");
536         goto failure;
537     }
538
539     /*
540      * Regardless procedure type, the following tags must exist:
541      *  D
542      *  T
543      *  C
544      *  I
545      */
546     if (!tmpl->description) {
547         con_err("template compile error: %s missing `D:` tag\n", file);
548         goto failure;
549     }
550     if (!tmpl->proceduretype) {
551         con_err("template compile error: %s missing `T:` tag\n", file);
552         goto failure;
553     }
554     if (!tmpl->compileflags) {
555         con_err("template compile error: %s missing `C:` tag\n", file);
556         goto failure;
557     }
558     if (!tmpl->sourcefile) {
559         con_err("template compile error: %s missing `I:` tag\n", file);
560         goto failure;
561     }
562
563     /*
564      * Now lets compile the template, compilation is really just
565      * the process of validating the input.
566      */
567     if (!strcmp(tmpl->proceduretype, "-compile")) {
568         if (tmpl->executeflags)
569             con_err("template compile warning: %s erroneous tag `E:` when only compiling\n", file);
570         if (tmpl->comparematch)
571             con_err("template compile warning: %s erroneous tag `M:` when only compiling\n", file);
572         goto success;
573     } else if (!strcmp(tmpl->proceduretype, "-execute")) {
574         if (!tmpl->executeflags) {
575             /* default to $null */
576             tmpl->executeflags = util_strdup("$null");
577         }
578         if (!tmpl->comparematch) {
579             con_err("template compile error: %s missing `M:` tag (use `$null` for exclude)\n", file);
580             goto failure;
581         }
582     } else if (!strcmp(tmpl->proceduretype, "-fail")) {
583         if (tmpl->executeflags)
584             con_err("template compile warning: %s erroneous tag `E:` when only failing\n", file);
585         if (tmpl->comparematch)
586             con_err("template compile warning: %s erroneous tag `M:` when only failing\n", file);
587     } else if (!strcmp(tmpl->proceduretype, "-diagnostic")) {
588         if (tmpl->executeflags)
589             con_err("template compile warning: %s erroneous tag `E:` when only diagnostic\n", file);
590         if (!tmpl->comparematch) {
591             con_err("template compile error: %s missing `M:` tag (use `$null` for exclude)\n", file);
592             goto failure;
593         }
594     } else if (!strcmp(tmpl->proceduretype, "-pp")) {
595         if (tmpl->executeflags)
596             con_err("template compile warning: %s erroneous tag `E:` when only preprocessing\n", file);
597         if (!tmpl->comparematch) {
598             con_err("template compile error: %s missing `M:` tag (use `$null` for exclude)\n", file);
599             goto failure;
600         }
601     } else {
602         con_err("template compile error: %s invalid procedure type: %s\n", file, tmpl->proceduretype);
603         goto failure;
604     }
605
606 success:
607     fs_file_close(tempfile);
608     return tmpl;
609
610 failure:
611     /*
612      * The file might not exist and we jump here when that doesn't happen
613      * so the check to see if it's not null here is required.
614      */
615     if (tempfile)
616         fs_file_close(tempfile);
617     mem_d (tmpl);
618
619     return NULL;
620 }
621
622 static void task_template_destroy(task_template_t *tmpl) {
623     if (!tmpl)
624         return;
625
626     if (tmpl->description)    mem_d(tmpl->description);
627     if (tmpl->proceduretype)  mem_d(tmpl->proceduretype);
628     if (tmpl->compileflags)   mem_d(tmpl->compileflags);
629     if (tmpl->executeflags)   mem_d(tmpl->executeflags);
630     if (tmpl->sourcefile)     mem_d(tmpl->sourcefile);
631     if (tmpl->rulesfile)      mem_d(tmpl->rulesfile);
632     if (tmpl->testflags)      mem_d(tmpl->testflags);
633
634     /*
635      * Delete all allocated string for task tmpl then destroy the
636      * main vector.
637      */
638     {
639         size_t i = 0;
640         for (; i < vec_size(tmpl->comparematch); i++)
641             mem_d(tmpl->comparematch[i]);
642
643         vec_free(tmpl->comparematch);
644     }
645
646     /*
647      * Nullify all the template members otherwise NULL comparision
648      * checks will fail if tmpl pointer is reused.
649      */
650     mem_d(tmpl->tempfilename);
651     mem_d(tmpl);
652 }
653
654 /*
655  * Now comes the task manager, this system allows adding tasks in and out
656  * of a task list.  This is the executor of the tasks essentially as well.
657  */
658 typedef struct {
659     task_template_t *tmpl;
660     fs_file_t       **runhandles;
661     fs_file_t       *stderrlog;
662     fs_file_t       *stdoutlog;
663     char            *stdoutlogfile;
664     char            *stderrlogfile;
665     bool             compiled;
666 } task_t;
667
668 static task_t *task_tasks = NULL;
669
670 /*
671  * Read a directory and searches for all template files in it
672  * which is later used to run all tests.
673  */
674 static bool task_propagate(const char *curdir, size_t *pad, const char *defs) {
675     bool             success = true;
676     fs_dir_t        *dir;
677     fs_dirent_t     *files;
678     struct stat      directory;
679     char             buffer[4096];
680     size_t           found = 0;
681     char           **directories = NULL;
682     char            *claim = util_strdup(curdir);
683     size_t           i;
684
685     vec_push(directories, claim);
686     dir = fs_dir_open(claim);
687
688     /*
689      * Generate a list of subdirectories since we'll be checking them too
690      * for tmpl files.
691      */
692     while ((files = fs_dir_read(dir))) {
693         util_asprintf(&claim, "%s/%s", curdir, files->d_name);
694         if (stat(claim, &directory) == -1) {
695             fs_dir_close(dir);
696             mem_d(claim);
697             return false;
698         }
699
700         if (S_ISDIR(directory.st_mode) && files->d_name[0] != '.') {
701             vec_push(directories, claim);
702         } else {
703             mem_d(claim);
704             claim = NULL;
705         }
706     }
707     fs_dir_close(dir);
708
709     /*
710      * Now do all the work, by touching all the directories inside
711      * test as well and compile the task templates into data we can
712      * use to run the tests.
713      */
714     for (i = 0; i < vec_size(directories); i++) {
715         dir = fs_dir_open(directories[i]);
716
717         while ((files = fs_dir_read(dir))) {
718             util_snprintf(buffer, sizeof(buffer), "%s/%s", directories[i], files->d_name);
719             if (stat(buffer, &directory) == -1) {
720                 con_err("internal error: stat failed, aborting\n");
721                 abort();
722             }
723
724             if (S_ISDIR(directory.st_mode))
725                 continue;
726
727             /*
728              * We made it here, which concludes the file/directory is not
729              * actually a directory, so it must be a file :)
730              */
731             if (strcmp(files->d_name + strlen(files->d_name) - 5, ".tmpl") == 0) {
732                 task_template_t *tmpl = task_template_compile(files->d_name, directories[i], pad);
733                 char             buf[4096]; /* one page should be enough */
734                 const char      *qcflags = NULL;
735                 task_t           task;
736
737                 found ++;
738                 if (!tmpl) {
739                     con_err("error compiling task template: %s\n", files->d_name);
740                     success = false;
741                     continue;
742                 }
743                 /*
744                  * Generate a temportary file name for the output binary
745                  * so we don't trample over an existing one.
746                  */
747                 tmpl->tempfilename = NULL;
748                 util_asprintf(&tmpl->tempfilename, "%s/TMPDAT.%s.dat", directories[i], files->d_name);
749
750                 /*
751                  * Additional QCFLAGS enviroment variable may be used
752                  * to test compile flags for all tests.  This needs to be
753                  * BEFORE other flags (so that the .tmpl can override them)
754                  */
755                 qcflags = platform_getenv("QCFLAGS");
756
757                 /*
758                  * Generate the command required to open a pipe to a process
759                  * which will be refered to with a handle in the task for
760                  * reading the data from the pipe.
761                  */
762                 if (strcmp(tmpl->proceduretype, "-pp")) {
763                     if (qcflags) {
764                         if (tmpl->testflags && !strcmp(tmpl->testflags, "-no-defs")) {
765                             util_snprintf(buf, sizeof(buf), "%s %s/%s %s %s -o %s",
766                                 task_bins[TASK_COMPILE],
767                                 directories[i],
768                                 tmpl->sourcefile,
769                                 qcflags,
770                                 tmpl->compileflags,
771                                 tmpl->tempfilename
772                             );
773                         } else {
774                             util_snprintf(buf, sizeof(buf), "%s %s/%s %s/%s %s %s -o %s",
775                                 task_bins[TASK_COMPILE],
776                                 curdir,
777                                 defs,
778                                 directories[i],
779                                 tmpl->sourcefile,
780                                 qcflags,
781                                 tmpl->compileflags,
782                                 tmpl->tempfilename
783                             );
784                         }
785                     } else {
786                         if (tmpl->testflags && !strcmp(tmpl->testflags, "-no-defs")) {
787                             util_snprintf(buf, sizeof(buf), "%s %s/%s %s -o %s",
788                                 task_bins[TASK_COMPILE],
789                                 directories[i],
790                                 tmpl->sourcefile,
791                                 tmpl->compileflags,
792                                 tmpl->tempfilename
793                             );
794                         } else {
795                             util_snprintf(buf, sizeof(buf), "%s %s/%s %s/%s %s -o %s",
796                                 task_bins[TASK_COMPILE],
797                                 curdir,
798                                 defs,
799                                 directories[i],
800                                 tmpl->sourcefile,
801                                 tmpl->compileflags,
802                                 tmpl->tempfilename
803                             );
804                         }
805                     }
806                 } else {
807                     /* Preprocessing (qcflags mean shit all here we don't allow them) */
808                     if (tmpl->testflags && !strcmp(tmpl->testflags, "-no-defs")) {
809                         util_snprintf(buf, sizeof(buf), "%s -E %s/%s -o %s",
810                             task_bins[TASK_COMPILE],
811                             directories[i],
812                             tmpl->sourcefile,
813                             tmpl->tempfilename
814                         );
815                     } else {
816                         util_snprintf(buf, sizeof(buf), "%s -E %s/%s %s/%s -o %s",
817                             task_bins[TASK_COMPILE],
818                             curdir,
819                             defs,
820                             directories[i],
821                             tmpl->sourcefile,
822                             tmpl->tempfilename
823                         );
824                     }
825                 }
826
827                 /*
828                  * The task template was compiled, now lets create a task from
829                  * the template data which has now been propagated.
830                  */
831                 task.tmpl = tmpl;
832                 if (!(task.runhandles = task_popen(buf, "r"))) {
833                     con_err("error opening pipe to process for test: %s\n", tmpl->description);
834                     success = false;
835                     continue;
836                 }
837
838                 /*
839                  * Open up some file desciptors for logging the stdout/stderr
840                  * to our own.
841                  */
842                 util_snprintf(buf,  sizeof(buf), "%s.stdout", tmpl->tempfilename);
843                 task.stdoutlogfile = util_strdup(buf);
844                 if (!(task.stdoutlog     = fs_file_open(buf, "w"))) {
845                     con_err("error opening %s for stdout\n", buf);
846                     continue;
847                 }
848
849                 util_snprintf(buf,  sizeof(buf), "%s.stderr", tmpl->tempfilename);
850                 task.stderrlogfile = util_strdup(buf);
851                 if (!(task.stderrlog = fs_file_open(buf, "w"))) {
852                     con_err("error opening %s for stderr\n", buf);
853                     continue;
854                 }
855
856                 vec_push(task_tasks, task);
857             }
858         }
859
860         fs_dir_close(dir);
861         mem_d(directories[i]); /* free claimed memory */
862     }
863     vec_free(directories);
864
865     return success;
866 }
867
868 /*
869  * Task precleanup removes any existing temporary files or log files
870  * left behind from a previous invoke of the test-suite.
871  */
872 static void task_precleanup(const char *curdir) {
873     fs_dir_t     *dir;
874     fs_dirent_t  *files;
875     char          buffer[4096];
876
877     dir = fs_dir_open(curdir);
878
879     while ((files = fs_dir_read(dir))) {
880         if (strstr(files->d_name, "TMP")     ||
881             strstr(files->d_name, ".stdout") ||
882             strstr(files->d_name, ".stderr") ||
883             strstr(files->d_name, ".dat"))
884         {
885             util_snprintf(buffer, sizeof(buffer), "%s/%s", curdir, files->d_name);
886             if (remove(buffer))
887                 con_err("error removing temporary file: %s\n", buffer);
888         }
889     }
890
891     fs_dir_close(dir);
892 }
893
894 static void task_destroy(void) {
895     /*
896      * Free all the data in the task list and finally the list itself
897      * then proceed to cleanup anything else outside the program like
898      * temporary files.
899      */
900     size_t i;
901     for (i = 0; i < vec_size(task_tasks); i++) {
902         /*
903          * Close any open handles to files or processes here.  It's mighty
904          * annoying to have to do all this cleanup work.
905          */
906         if (task_tasks[i].stdoutlog)  fs_file_close (task_tasks[i].stdoutlog);
907         if (task_tasks[i].stderrlog)  fs_file_close (task_tasks[i].stderrlog);
908
909         /*
910          * Only remove the log files if the test actually compiled otherwise
911          * forget about it (or if it didn't compile, and the procedure type
912          * was set to -fail (meaning it shouldn't compile) .. stil remove)
913          */
914         if (task_tasks[i].compiled || !strcmp(task_tasks[i].tmpl->proceduretype, "-fail")) {
915             if (remove(task_tasks[i].stdoutlogfile))
916                 con_err("error removing stdout log file: %s\n", task_tasks[i].stdoutlogfile);
917             if (remove(task_tasks[i].stderrlogfile))
918                 con_err("error removing stderr log file: %s\n", task_tasks[i].stderrlogfile);
919
920             (void)!remove(task_tasks[i].tmpl->tempfilename);
921         }
922
923         /* free util_strdup data for log files */
924         mem_d(task_tasks[i].stdoutlogfile);
925         mem_d(task_tasks[i].stderrlogfile);
926
927         task_template_destroy(task_tasks[i].tmpl);
928     }
929     vec_free(task_tasks);
930 }
931
932 /*
933  * This executes the QCVM task for a specificly compiled progs.dat
934  * using the template passed into it for call-flags and user defined
935  * messages IF the procedure type is -execute, otherwise it matches
936  * the preprocessor output.
937  */
938 static bool task_trymatch(size_t i, char ***line) {
939     bool             success = true;
940     bool             process = true;
941     int              retval  = EXIT_SUCCESS;
942     fs_file_t       *execute;
943     char             buffer[4096];
944     task_template_t *tmpl = task_tasks[i].tmpl;
945
946     memset  (buffer,0,sizeof(buffer));
947
948     if (!strcmp(tmpl->proceduretype, "-execute")) {
949         /*
950          * Drop the execution flags for the QCVM if none where
951          * actually specified.
952          */
953         if (!strcmp(tmpl->executeflags, "$null")) {
954             util_snprintf(buffer,  sizeof(buffer), "%s %s",
955                 task_bins[TASK_EXECUTE],
956                 tmpl->tempfilename
957             );
958         } else {
959             util_snprintf(buffer,  sizeof(buffer), "%s %s %s",
960                 task_bins[TASK_EXECUTE],
961                 tmpl->executeflags,
962                 tmpl->tempfilename
963             );
964         }
965
966         execute = (fs_file_t*)popen(buffer, "r");
967         if (!execute)
968             return false;
969     } else if (!strcmp(tmpl->proceduretype, "-pp")) {
970         /*
971          * we're preprocessing, which means we need to read int
972          * the produced file and do some really weird shit.
973          */
974         if (!(execute = fs_file_open(tmpl->tempfilename, "r")))
975             return false;
976
977         process = false;
978     } else {
979         /*
980          * we're testing diagnostic output, which means it will be
981          * in runhandles[2] (stderr) since that is where the compiler
982          * puts it's errors.
983          */
984         if (!(execute = fs_file_open(task_tasks[i].stderrlogfile, "r")))
985             return false;
986
987         process = false;
988     }
989
990     /*
991      * Now lets read the lines and compare them to the matches we expect
992      * and handle accordingly.
993      */
994     {
995         char  *data    = NULL;
996         size_t size    = 0;
997         size_t compare = 0;
998
999         while (fs_file_getline(&data, &size, execute) != FS_FILE_EOF) {
1000             if (!strcmp(data, "No main function found\n")) {
1001                 con_err("test failure: `%s` (No main function found) [%s]\n",
1002                     tmpl->description,
1003                     tmpl->rulesfile
1004                 );
1005                 if (!process)
1006                     fs_file_close(execute);
1007                 else
1008                     pclose((FILE*)execute);
1009                 return false;
1010             }
1011
1012             /*
1013              * Trim newlines from data since they will just break our
1014              * ability to properly validate matches.
1015              */
1016             if  (strrchr(data, '\n'))
1017                 *strrchr(data, '\n') = '\0';
1018
1019             /*
1020              * We remove the file/directory and stuff from the error
1021              * match messages when testing diagnostics.
1022              */
1023             if(!strcmp(tmpl->proceduretype, "-diagnostic")) {
1024                 if (strstr(data, "there have been errors, bailing out"))
1025                     continue; /* ignore it */
1026                 if (strstr(data, ": error: ")) {
1027                     char *claim = util_strdup(data + (strstr(data, ": error: ") - data) + 9);
1028                     mem_d(data);
1029                     data = claim;
1030                 }
1031             }
1032
1033             /*
1034              * We need to ignore null lines for when -pp is used (preprocessor), since
1035              * the preprocessor is likely to create empty newlines in certain macro
1036              * instantations, otherwise it's in the wrong nature to ignore empty newlines.
1037              */
1038             if (!strcmp(tmpl->proceduretype, "-pp") && !*data)
1039                 continue;
1040
1041             if (vec_size(tmpl->comparematch) > compare) {
1042                 if (strcmp(data, tmpl->comparematch[compare++])) {
1043                     success = false;
1044                 }
1045             } else {
1046                 success = false;
1047             }
1048
1049             /*
1050              * Copy to output vector for diagnostics if execution match
1051              * fails.
1052              */
1053             vec_push(*line, data);
1054
1055             /* reset */
1056             data = NULL;
1057             size = 0;
1058         }
1059
1060         if (compare != vec_size(tmpl->comparematch))
1061             success = false;
1062
1063         mem_d(data);
1064         data = NULL;
1065     }
1066
1067     if (process)
1068         retval = pclose((FILE*)execute);
1069     else
1070         fs_file_close(execute);
1071
1072     return success && retval == EXIT_SUCCESS;
1073 }
1074
1075 static const char *task_type(task_template_t *tmpl) {
1076     if (!strcmp(tmpl->proceduretype, "-pp"))
1077         return "type: preprocessor";
1078     if (!strcmp(tmpl->proceduretype, "-execute"))
1079         return "type: execution";
1080     if (!strcmp(tmpl->proceduretype, "-compile"))
1081         return "type: compile";
1082     if (!strcmp(tmpl->proceduretype, "-diagnostic"))
1083         return "type: diagnostic";
1084     return "type: fail";
1085 }
1086
1087 /*
1088  * This schedualizes all tasks and actually runs them individually
1089  * this is generally easy for just -compile variants.  For compile and
1090  * execution this takes more work since a task needs to be generated
1091  * from thin air and executed INLINE.
1092  */
1093 #include <math.h>
1094 static size_t task_schedualize(size_t *pad) {
1095     char   space[2][64];
1096     bool   execute  = false;
1097     char  *data     = NULL;
1098     char **match    = NULL;
1099     size_t size     = 0;
1100     size_t i        = 0;
1101     size_t j        = 0;
1102     size_t failed   = 0;
1103     int    status   = 0;
1104
1105     util_snprintf(space[0], sizeof(space[0]), "%d", (int)vec_size(task_tasks));
1106
1107     for (; i < vec_size(task_tasks); i++) {
1108         memset(space[1], 0, sizeof(space[1]));
1109         util_snprintf(space[1], sizeof(space[1]), "%d", (int)(i + 1));
1110
1111         con_out("test #%u %*s", i + 1, strlen(space[0]) - strlen(space[1]), "");
1112
1113         /*
1114          * Generate a task from thin air if it requires execution in
1115          * the QCVM.
1116          */
1117
1118         /* diagnostic is not executed, but compare tested instead, like preproessor */
1119         execute = !! (!strcmp(task_tasks[i].tmpl->proceduretype, "-execute")) ||
1120                      (!strcmp(task_tasks[i].tmpl->proceduretype, "-pp"))      ||
1121                      (!strcmp(task_tasks[i].tmpl->proceduretype, "-diagnostic"));
1122
1123         /*
1124          * We assume it compiled before we actually compiled :).  On error
1125          * we change the value
1126          */
1127         task_tasks[i].compiled = true;
1128
1129         /*
1130          * Read data from stdout first and pipe that stuff into a log file
1131          * then we do the same for stderr.
1132          */
1133         while (fs_file_getline(&data, &size, task_tasks[i].runhandles[1]) != FS_FILE_EOF) {
1134             fs_file_puts(task_tasks[i].stdoutlog, data);
1135
1136             if (strstr(data, "failed to open file")) {
1137                 task_tasks[i].compiled = false;
1138                 execute                = false;
1139             }
1140         }
1141         while (fs_file_getline(&data, &size, task_tasks[i].runhandles[2]) != FS_FILE_EOF) {
1142             /*
1143              * If a string contains an error we just dissalow execution
1144              * of it in the vm.
1145              *
1146              * TODO: make this more percise, e.g if we print a warning
1147              * that refers to a variable named error, or something like
1148              * that .. then this will blowup :P
1149              */
1150             if (strstr(data, "error") && strcmp(task_tasks[i].tmpl->proceduretype, "-diagnostic")) {
1151                 execute                = false;
1152                 task_tasks[i].compiled = false;
1153             }
1154
1155             fs_file_puts (task_tasks[i].stderrlog, data);
1156             fs_file_flush(task_tasks[i].stderrlog); /* fast flush for read */
1157         }
1158
1159         if (!task_tasks[i].compiled && strcmp(task_tasks[i].tmpl->proceduretype, "-fail")) {
1160             con_out("failure:   `%s` %*s %*s\n",
1161                 task_tasks[i].tmpl->description,
1162                 (pad[0] + pad[1] - strlen(task_tasks[i].tmpl->description)) + (strlen(task_tasks[i].tmpl->rulesfile) - pad[1]),
1163                 task_tasks[i].tmpl->rulesfile,
1164                 (pad[1] + pad[2] - strlen(task_tasks[i].tmpl->rulesfile)) + (strlen("(failed to compile)") - pad[2]),
1165                 "(failed to compile)"
1166             );
1167             failed++;
1168             continue;
1169         }
1170
1171         status = task_pclose(task_tasks[i].runhandles);
1172         if ((!strcmp(task_tasks[i].tmpl->proceduretype, "-fail") && status == EXIT_SUCCESS)
1173         ||  ( strcmp(task_tasks[i].tmpl->proceduretype, "-fail") && status == EXIT_FAILURE)) {
1174             con_out("failure:   `%s` %*s %*s\n",
1175                 task_tasks[i].tmpl->description,
1176                 (pad[0] + pad[1] - strlen(task_tasks[i].tmpl->description)) + (strlen(task_tasks[i].tmpl->rulesfile) - pad[1]),
1177                 task_tasks[i].tmpl->rulesfile,
1178                 (pad[1] + pad[2] - strlen(task_tasks[i].tmpl->rulesfile)) + (strlen("(compiler didn't return exit success)") - pad[2]),
1179                 "(compiler didn't return exit success)"
1180             );
1181             failed++;
1182             continue;
1183         }
1184
1185         if (!execute) {
1186             con_out("succeeded: `%s` %*s %*s\n",
1187                 task_tasks[i].tmpl->description,
1188                 (pad[0] + pad[1] - strlen(task_tasks[i].tmpl->description)) + (strlen(task_tasks[i].tmpl->rulesfile) - pad[1]),
1189                 task_tasks[i].tmpl->rulesfile,
1190                 (pad[1] + pad[2] - strlen(task_tasks[i].tmpl->rulesfile)) + (strlen(task_type(task_tasks[i].tmpl)) - pad[2]),
1191                 task_type(task_tasks[i].tmpl)
1192
1193             );
1194             continue;
1195         }
1196
1197         /*
1198          * If we made it here that concludes the task is to be executed
1199          * in the virtual machine (or the preprocessor output needs to
1200          * be matched).
1201          */
1202         if (!task_trymatch(i, &match)) {
1203             size_t d = 0;
1204
1205             con_out("failure:   `%s` %*s %*s\n",
1206                 task_tasks[i].tmpl->description,
1207                 (pad[0] + pad[1] - strlen(task_tasks[i].tmpl->description)) + (strlen(task_tasks[i].tmpl->rulesfile) - pad[1]),
1208                 task_tasks[i].tmpl->rulesfile,
1209                 (pad[1] + pad[2] - strlen(task_tasks[i].tmpl->rulesfile)) + (strlen(
1210                     (strcmp(task_tasks[i].tmpl->proceduretype, "-pp"))
1211                         ? "(invalid results from execution)"
1212                         : (strcmp(task_tasks[i].tmpl->proceduretype, "-diagnostic"))
1213                             ? "(invalid results from preprocessing)"
1214                             : "(invalid results from compiler diagnsotics)"
1215                 ) - pad[2]),
1216                 (strcmp(task_tasks[i].tmpl->proceduretype, "-pp"))
1217                     ? "(invalid results from execution)"
1218                     : (strcmp(task_tasks[i].tmpl->proceduretype, "-diagnostic"))
1219                             ? "(invalid results from preprocessing)"
1220                             : "(invalid results from compiler diagnsotics)"
1221             );
1222
1223             /*
1224              * Print nicely formatted expected match lists to console error
1225              * handler for the all the given matches in the template file and
1226              * what was actually returned from executing.
1227              */
1228             con_out("    Expected From %u Matches: (got %u Matches)\n",
1229                 vec_size(task_tasks[i].tmpl->comparematch),
1230                 vec_size(match)
1231             );
1232             for (; d < vec_size(task_tasks[i].tmpl->comparematch); d++) {
1233                 char  *select = task_tasks[i].tmpl->comparematch[d];
1234                 size_t length = 60 - strlen(select);
1235
1236                 con_out("        Expected: \"%s\"", select);
1237                 while (length --)
1238                     con_out(" ");
1239                 con_out("| Got: \"%s\"\n", (d >= vec_size(match)) ? "<<nothing else to compare>>" : match[d]);
1240             }
1241
1242             /*
1243              * Print the non-expected out (since we are simply not expecting it)
1244              * This will help track down bugs in template files that fail to match
1245              * something.
1246              */
1247             if (vec_size(match) > vec_size(task_tasks[i].tmpl->comparematch)) {
1248                 for (d = 0; d < vec_size(match) - vec_size(task_tasks[i].tmpl->comparematch); d++) {
1249                     con_out("        Expected: Nothing                                                       | Got: \"%s\"\n",
1250                         match[d + vec_size(task_tasks[i].tmpl->comparematch)]
1251                     );
1252                 }
1253             }
1254
1255
1256             for (j = 0; j < vec_size(match); j++)
1257                 mem_d(match[j]);
1258             vec_free(match);
1259             failed++;
1260             continue;
1261         }
1262
1263         for (j = 0; j < vec_size(match); j++)
1264             mem_d(match[j]);
1265         vec_free(match);
1266
1267         con_out("succeeded: `%s` %*s %*s\n",
1268             task_tasks[i].tmpl->description,
1269             (pad[0] + pad[1] - strlen(task_tasks[i].tmpl->description)) + (strlen(task_tasks[i].tmpl->rulesfile) - pad[1]),
1270             task_tasks[i].tmpl->rulesfile,
1271             (pad[1] + pad[2] - strlen(task_tasks[i].tmpl->rulesfile)) + (strlen(task_type(task_tasks[i].tmpl))- pad[2]),
1272             task_type(task_tasks[i].tmpl)
1273
1274         );
1275     }
1276     mem_d(data);
1277     return failed;
1278 }
1279
1280 /*
1281  * This is the heart of the whole test-suite process.  This cleans up
1282  * any existing temporary files left behind as well as log files left
1283  * behind.  Then it propagates a list of tests from `curdir` by scaning
1284  * it for template files and compiling them into tasks, in which it
1285  * schedualizes them (executes them) and actually reports errors and
1286  * what not.  It then proceeds to destroy the tasks and return memory
1287  * it's the engine :)
1288  *
1289  * It returns true of tests could be propagated, otherwise it returns
1290  * false.
1291  *
1292  * It expects con_init() was called before hand.
1293  */
1294 static GMQCC_WARN bool test_perform(const char *curdir, const char *defs) {
1295     size_t             failed       = false;
1296     static const char *default_defs = "defs.qh";
1297
1298     size_t pad[] = {
1299         /* test ### [succeed/fail]: `description`      [tests/template.tmpl]     [type] */
1300                     0,                                 0,                        0
1301     };
1302
1303     /*
1304      * If the default definition file isn't set to anything.  We will
1305      * use the default_defs here, which is "defs.qc"
1306      */
1307     if (!defs) {
1308         defs = default_defs;
1309     }
1310
1311
1312     task_precleanup(curdir);
1313     if (!task_propagate(curdir, pad, defs)) {
1314         con_err("error: failed to propagate tasks\n");
1315         task_destroy();
1316         return false;
1317     }
1318     /*
1319      * If we made it here all tasks where propagated from their resultant
1320      * template file.  So we can start the FILO scheduler, this has been
1321      * designed in the most thread-safe way possible for future threading
1322      * it's designed to prevent lock contention, and possible syncronization
1323      * issues.
1324      */
1325     failed = task_schedualize(pad);
1326     if (failed)
1327         con_out("%u out of %u tests failed\n", failed, vec_size(task_tasks));
1328     task_destroy();
1329
1330     return (failed) ? false : true;
1331 }
1332
1333 /*
1334  * Fancy GCC-like LONG parsing allows things like --opt=param with
1335  * assignment operator.  This is used for redirecting stdout/stderr
1336  * console to specific files of your choice.
1337  */
1338 static bool parsecmd(const char *optname, int *argc_, char ***argv_, char **out, int ds, bool split) {
1339     int  argc   = *argc_;
1340     char **argv = *argv_;
1341
1342     size_t len = strlen(optname);
1343
1344     if (strncmp(argv[0]+ds, optname, len))
1345         return false;
1346
1347     /* it's --optname, check how the parameter is supplied */
1348     if (argv[0][ds+len] == '=') {
1349         *out = argv[0]+ds+len+1;
1350         return true;
1351     }
1352
1353     if (!split || argc < ds) /* no parameter was provided, or only single-arg form accepted */
1354         return false;
1355
1356     /* using --opt param */
1357     *out = argv[1];
1358     --*argc_;
1359     ++*argv_;
1360     return true;
1361 }
1362
1363 int main(int argc, char **argv) {
1364     bool          succeed  = false;
1365     char         *redirout = (char*)stdout;
1366     char         *redirerr = (char*)stderr;
1367     char         *defs     = NULL;
1368
1369     con_init();
1370     OPTS_OPTION_U16(OPTION_MEMDUMPCOLS) = 16;
1371
1372     /*
1373      * Command line option parsing commences now We only need to support
1374      * a few things in the test suite.
1375      */
1376     while (argc > 1) {
1377         ++argv;
1378         --argc;
1379
1380         if (argv[0][0] == '-') {
1381             if (parsecmd("redirout", &argc, &argv, &redirout, 1, false))
1382                 continue;
1383             if (parsecmd("redirerr", &argc, &argv, &redirerr, 1, false))
1384                 continue;
1385             if (parsecmd("defs",     &argc, &argv, &defs,     1, false))
1386                 continue;
1387
1388             con_change(redirout, redirerr);
1389
1390             if (!strcmp(argv[0]+1, "debug")) {
1391                 OPTS_OPTION_BOOL(OPTION_DEBUG) = true;
1392                 continue;
1393             }
1394             if (!strcmp(argv[0]+1, "memchk")) {
1395                 OPTS_OPTION_BOOL(OPTION_MEMCHK) = true;
1396                 continue;
1397             }
1398             if (!strcmp(argv[0]+1, "nocolor")) {
1399                 con_color(0);
1400                 continue;
1401             }
1402
1403             con_err("invalid argument %s\n", argv[0]+1);
1404             return -1;
1405         }
1406     }
1407     con_change(redirout, redirerr);
1408     succeed = test_perform("tests", defs);
1409     stat_info();
1410
1411     return (succeed) ? EXIT_SUCCESS : EXIT_FAILURE;
1412 }