]> git.xonotic.org Git - xonotic/gmqcc.git/blob - test.c
Make that unsigned
[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 %s -o %s",
810                             task_bins[TASK_COMPILE],
811                             directories[i],
812                             tmpl->sourcefile,
813                             tmpl->compileflags,
814                             tmpl->tempfilename
815                         );
816                     } else {
817                         util_snprintf(buf, sizeof(buf), "%s -E %s/%s %s/%s %s -o %s",
818                             task_bins[TASK_COMPILE],
819                             curdir,
820                             defs,
821                             directories[i],
822                             tmpl->sourcefile,
823                             tmpl->compileflags,
824                             tmpl->tempfilename
825                         );
826                     }
827                 }
828
829                 /*
830                  * The task template was compiled, now lets create a task from
831                  * the template data which has now been propagated.
832                  */
833                 task.tmpl = tmpl;
834                 if (!(task.runhandles = task_popen(buf, "r"))) {
835                     con_err("error opening pipe to process for test: %s\n", tmpl->description);
836                     success = false;
837                     continue;
838                 }
839
840                 /*
841                  * Open up some file desciptors for logging the stdout/stderr
842                  * to our own.
843                  */
844                 util_snprintf(buf,  sizeof(buf), "%s.stdout", tmpl->tempfilename);
845                 task.stdoutlogfile = util_strdup(buf);
846                 if (!(task.stdoutlog     = fs_file_open(buf, "w"))) {
847                     con_err("error opening %s for stdout\n", buf);
848                     continue;
849                 }
850
851                 util_snprintf(buf,  sizeof(buf), "%s.stderr", tmpl->tempfilename);
852                 task.stderrlogfile = util_strdup(buf);
853                 if (!(task.stderrlog = fs_file_open(buf, "w"))) {
854                     con_err("error opening %s for stderr\n", buf);
855                     continue;
856                 }
857
858                 vec_push(task_tasks, task);
859             }
860         }
861
862         fs_dir_close(dir);
863         mem_d(directories[i]); /* free claimed memory */
864     }
865     vec_free(directories);
866
867     return success;
868 }
869
870 /*
871  * Task precleanup removes any existing temporary files or log files
872  * left behind from a previous invoke of the test-suite.
873  */
874 static void task_precleanup(const char *curdir) {
875     fs_dir_t     *dir;
876     fs_dirent_t  *files;
877     char          buffer[4096];
878
879     dir = fs_dir_open(curdir);
880
881     while ((files = fs_dir_read(dir))) {
882         if (strstr(files->d_name, "TMP")     ||
883             strstr(files->d_name, ".stdout") ||
884             strstr(files->d_name, ".stderr") ||
885             strstr(files->d_name, ".dat"))
886         {
887             util_snprintf(buffer, sizeof(buffer), "%s/%s", curdir, files->d_name);
888             if (remove(buffer))
889                 con_err("error removing temporary file: %s\n", buffer);
890         }
891     }
892
893     fs_dir_close(dir);
894 }
895
896 static void task_destroy(void) {
897     /*
898      * Free all the data in the task list and finally the list itself
899      * then proceed to cleanup anything else outside the program like
900      * temporary files.
901      */
902     size_t i;
903     for (i = 0; i < vec_size(task_tasks); i++) {
904         /*
905          * Close any open handles to files or processes here.  It's mighty
906          * annoying to have to do all this cleanup work.
907          */
908         if (task_tasks[i].stdoutlog)  fs_file_close (task_tasks[i].stdoutlog);
909         if (task_tasks[i].stderrlog)  fs_file_close (task_tasks[i].stderrlog);
910
911         /*
912          * Only remove the log files if the test actually compiled otherwise
913          * forget about it (or if it didn't compile, and the procedure type
914          * was set to -fail (meaning it shouldn't compile) .. stil remove)
915          */
916         if (task_tasks[i].compiled || !strcmp(task_tasks[i].tmpl->proceduretype, "-fail")) {
917             if (remove(task_tasks[i].stdoutlogfile))
918                 con_err("error removing stdout log file: %s\n", task_tasks[i].stdoutlogfile);
919             if (remove(task_tasks[i].stderrlogfile))
920                 con_err("error removing stderr log file: %s\n", task_tasks[i].stderrlogfile);
921
922             (void)!remove(task_tasks[i].tmpl->tempfilename);
923         }
924
925         /* free util_strdup data for log files */
926         mem_d(task_tasks[i].stdoutlogfile);
927         mem_d(task_tasks[i].stderrlogfile);
928
929         task_template_destroy(task_tasks[i].tmpl);
930     }
931     vec_free(task_tasks);
932 }
933
934 /*
935  * This executes the QCVM task for a specificly compiled progs.dat
936  * using the template passed into it for call-flags and user defined
937  * messages IF the procedure type is -execute, otherwise it matches
938  * the preprocessor output.
939  */
940 static bool task_trymatch(size_t i, char ***line) {
941     bool             success = true;
942     bool             process = true;
943     int              retval  = EXIT_SUCCESS;
944     fs_file_t       *execute;
945     char             buffer[4096];
946     task_template_t *tmpl = task_tasks[i].tmpl;
947
948     memset  (buffer,0,sizeof(buffer));
949
950     if (!strcmp(tmpl->proceduretype, "-execute")) {
951         /*
952          * Drop the execution flags for the QCVM if none where
953          * actually specified.
954          */
955         if (!strcmp(tmpl->executeflags, "$null")) {
956             util_snprintf(buffer,  sizeof(buffer), "%s %s",
957                 task_bins[TASK_EXECUTE],
958                 tmpl->tempfilename
959             );
960         } else {
961             util_snprintf(buffer,  sizeof(buffer), "%s %s %s",
962                 task_bins[TASK_EXECUTE],
963                 tmpl->executeflags,
964                 tmpl->tempfilename
965             );
966         }
967
968         execute = (fs_file_t*)popen(buffer, "r");
969         if (!execute)
970             return false;
971     } else if (!strcmp(tmpl->proceduretype, "-pp")) {
972         /*
973          * we're preprocessing, which means we need to read int
974          * the produced file and do some really weird shit.
975          */
976         if (!(execute = fs_file_open(tmpl->tempfilename, "r")))
977             return false;
978
979         process = false;
980     } else {
981         /*
982          * we're testing diagnostic output, which means it will be
983          * in runhandles[2] (stderr) since that is where the compiler
984          * puts it's errors.
985          */
986         if (!(execute = fs_file_open(task_tasks[i].stderrlogfile, "r")))
987             return false;
988
989         process = false;
990     }
991
992     /*
993      * Now lets read the lines and compare them to the matches we expect
994      * and handle accordingly.
995      */
996     {
997         char  *data    = NULL;
998         size_t size    = 0;
999         size_t compare = 0;
1000
1001         while (fs_file_getline(&data, &size, execute) != FS_FILE_EOF) {
1002             if (!strcmp(data, "No main function found\n")) {
1003                 con_err("test failure: `%s` (No main function found) [%s]\n",
1004                     tmpl->description,
1005                     tmpl->rulesfile
1006                 );
1007                 if (!process)
1008                     fs_file_close(execute);
1009                 else
1010                     pclose((FILE*)execute);
1011                 return false;
1012             }
1013
1014             /*
1015              * Trim newlines from data since they will just break our
1016              * ability to properly validate matches.
1017              */
1018             if  (strrchr(data, '\n'))
1019                 *strrchr(data, '\n') = '\0';
1020
1021             /*
1022              * We remove the file/directory and stuff from the error
1023              * match messages when testing diagnostics.
1024              */
1025             if(!strcmp(tmpl->proceduretype, "-diagnostic")) {
1026                 if (strstr(data, "there have been errors, bailing out"))
1027                     continue; /* ignore it */
1028                 if (strstr(data, ": error: ")) {
1029                     char *claim = util_strdup(data + (strstr(data, ": error: ") - data) + 9);
1030                     mem_d(data);
1031                     data = claim;
1032                 }
1033             }
1034
1035             /*
1036              * We need to ignore null lines for when -pp is used (preprocessor), since
1037              * the preprocessor is likely to create empty newlines in certain macro
1038              * instantations, otherwise it's in the wrong nature to ignore empty newlines.
1039              */
1040             if (!strcmp(tmpl->proceduretype, "-pp") && !*data)
1041                 continue;
1042
1043             if (vec_size(tmpl->comparematch) > compare) {
1044                 if (strcmp(data, tmpl->comparematch[compare++])) {
1045                     success = false;
1046                 }
1047             } else {
1048                 success = false;
1049             }
1050
1051             /*
1052              * Copy to output vector for diagnostics if execution match
1053              * fails.
1054              */
1055             vec_push(*line, data);
1056
1057             /* reset */
1058             data = NULL;
1059             size = 0;
1060         }
1061
1062         if (compare != vec_size(tmpl->comparematch))
1063             success = false;
1064
1065         mem_d(data);
1066         data = NULL;
1067     }
1068
1069     if (process)
1070         retval = pclose((FILE*)execute);
1071     else
1072         fs_file_close(execute);
1073
1074     return success && retval == EXIT_SUCCESS;
1075 }
1076
1077 static const char *task_type(task_template_t *tmpl) {
1078     if (!strcmp(tmpl->proceduretype, "-pp"))
1079         return "type: preprocessor";
1080     if (!strcmp(tmpl->proceduretype, "-execute"))
1081         return "type: execution";
1082     if (!strcmp(tmpl->proceduretype, "-compile"))
1083         return "type: compile";
1084     if (!strcmp(tmpl->proceduretype, "-diagnostic"))
1085         return "type: diagnostic";
1086     return "type: fail";
1087 }
1088
1089 /*
1090  * This schedualizes all tasks and actually runs them individually
1091  * this is generally easy for just -compile variants.  For compile and
1092  * execution this takes more work since a task needs to be generated
1093  * from thin air and executed INLINE.
1094  */
1095 #include <math.h>
1096 static size_t task_schedualize(size_t *pad) {
1097     char   space[2][64];
1098     bool   execute  = false;
1099     char  *data     = NULL;
1100     char **match    = NULL;
1101     size_t size     = 0;
1102     size_t i        = 0;
1103     size_t j        = 0;
1104     size_t failed   = 0;
1105     int    status   = 0;
1106
1107     util_snprintf(space[0], sizeof(space[0]), "%d", (int)vec_size(task_tasks));
1108
1109     for (; i < vec_size(task_tasks); i++) {
1110         memset(space[1], 0, sizeof(space[1]));
1111         util_snprintf(space[1], sizeof(space[1]), "%d", (int)(i + 1));
1112
1113         con_out("test #%u %*s", i + 1, strlen(space[0]) - strlen(space[1]), "");
1114
1115         /*
1116          * Generate a task from thin air if it requires execution in
1117          * the QCVM.
1118          */
1119
1120         /* diagnostic is not executed, but compare tested instead, like preproessor */
1121         execute = !! (!strcmp(task_tasks[i].tmpl->proceduretype, "-execute")) ||
1122                      (!strcmp(task_tasks[i].tmpl->proceduretype, "-pp"))      ||
1123                      (!strcmp(task_tasks[i].tmpl->proceduretype, "-diagnostic"));
1124
1125         /*
1126          * We assume it compiled before we actually compiled :).  On error
1127          * we change the value
1128          */
1129         task_tasks[i].compiled = true;
1130
1131         /*
1132          * Read data from stdout first and pipe that stuff into a log file
1133          * then we do the same for stderr.
1134          */
1135         while (fs_file_getline(&data, &size, task_tasks[i].runhandles[1]) != FS_FILE_EOF) {
1136             fs_file_puts(task_tasks[i].stdoutlog, data);
1137
1138             if (strstr(data, "failed to open file")) {
1139                 task_tasks[i].compiled = false;
1140                 execute                = false;
1141             }
1142         }
1143         while (fs_file_getline(&data, &size, task_tasks[i].runhandles[2]) != FS_FILE_EOF) {
1144             /*
1145              * If a string contains an error we just dissalow execution
1146              * of it in the vm.
1147              *
1148              * TODO: make this more percise, e.g if we print a warning
1149              * that refers to a variable named error, or something like
1150              * that .. then this will blowup :P
1151              */
1152             if (strstr(data, "error") && strcmp(task_tasks[i].tmpl->proceduretype, "-diagnostic")) {
1153                 execute                = false;
1154                 task_tasks[i].compiled = false;
1155             }
1156
1157             fs_file_puts (task_tasks[i].stderrlog, data);
1158             fs_file_flush(task_tasks[i].stderrlog); /* fast flush for read */
1159         }
1160
1161         if (!task_tasks[i].compiled && strcmp(task_tasks[i].tmpl->proceduretype, "-fail")) {
1162             con_out("failure:   `%s` %*s %*s\n",
1163                 task_tasks[i].tmpl->description,
1164                 (pad[0] + pad[1] - strlen(task_tasks[i].tmpl->description)) + (strlen(task_tasks[i].tmpl->rulesfile) - pad[1]),
1165                 task_tasks[i].tmpl->rulesfile,
1166                 (pad[1] + pad[2] - strlen(task_tasks[i].tmpl->rulesfile)) + (strlen("(failed to compile)") - pad[2]),
1167                 "(failed to compile)"
1168             );
1169             failed++;
1170             continue;
1171         }
1172
1173         status = task_pclose(task_tasks[i].runhandles);
1174         if ((!strcmp(task_tasks[i].tmpl->proceduretype, "-fail") && status == EXIT_SUCCESS)
1175         ||  ( strcmp(task_tasks[i].tmpl->proceduretype, "-fail") && status == EXIT_FAILURE)) {
1176             con_out("failure:   `%s` %*s %*s\n",
1177                 task_tasks[i].tmpl->description,
1178                 (pad[0] + pad[1] - strlen(task_tasks[i].tmpl->description)) + (strlen(task_tasks[i].tmpl->rulesfile) - pad[1]),
1179                 task_tasks[i].tmpl->rulesfile,
1180                 (pad[1] + pad[2] - strlen(task_tasks[i].tmpl->rulesfile)) + (strlen("(compiler didn't return exit success)") - pad[2]),
1181                 "(compiler didn't return exit success)"
1182             );
1183             failed++;
1184             continue;
1185         }
1186
1187         if (!execute) {
1188             con_out("succeeded: `%s` %*s %*s\n",
1189                 task_tasks[i].tmpl->description,
1190                 (pad[0] + pad[1] - strlen(task_tasks[i].tmpl->description)) + (strlen(task_tasks[i].tmpl->rulesfile) - pad[1]),
1191                 task_tasks[i].tmpl->rulesfile,
1192                 (pad[1] + pad[2] - strlen(task_tasks[i].tmpl->rulesfile)) + (strlen(task_type(task_tasks[i].tmpl)) - pad[2]),
1193                 task_type(task_tasks[i].tmpl)
1194
1195             );
1196             continue;
1197         }
1198
1199         /*
1200          * If we made it here that concludes the task is to be executed
1201          * in the virtual machine (or the preprocessor output needs to
1202          * be matched).
1203          */
1204         if (!task_trymatch(i, &match)) {
1205             size_t d = 0;
1206
1207             con_out("failure:   `%s` %*s %*s\n",
1208                 task_tasks[i].tmpl->description,
1209                 (pad[0] + pad[1] - strlen(task_tasks[i].tmpl->description)) + (strlen(task_tasks[i].tmpl->rulesfile) - pad[1]),
1210                 task_tasks[i].tmpl->rulesfile,
1211                 (pad[1] + pad[2] - strlen(task_tasks[i].tmpl->rulesfile)) + (strlen(
1212                     (strcmp(task_tasks[i].tmpl->proceduretype, "-pp"))
1213                         ? "(invalid results from execution)"
1214                         : (strcmp(task_tasks[i].tmpl->proceduretype, "-diagnostic"))
1215                             ? "(invalid results from preprocessing)"
1216                             : "(invalid results from compiler diagnsotics)"
1217                 ) - pad[2]),
1218                 (strcmp(task_tasks[i].tmpl->proceduretype, "-pp"))
1219                     ? "(invalid results from execution)"
1220                     : (strcmp(task_tasks[i].tmpl->proceduretype, "-diagnostic"))
1221                             ? "(invalid results from preprocessing)"
1222                             : "(invalid results from compiler diagnsotics)"
1223             );
1224
1225             /*
1226              * Print nicely formatted expected match lists to console error
1227              * handler for the all the given matches in the template file and
1228              * what was actually returned from executing.
1229              */
1230             con_out("    Expected From %u Matches: (got %u Matches)\n",
1231                 vec_size(task_tasks[i].tmpl->comparematch),
1232                 vec_size(match)
1233             );
1234             for (; d < vec_size(task_tasks[i].tmpl->comparematch); d++) {
1235                 char  *select = task_tasks[i].tmpl->comparematch[d];
1236                 size_t length = 60 - strlen(select);
1237
1238                 con_out("        Expected: \"%s\"", select);
1239                 while (length --)
1240                     con_out(" ");
1241                 con_out("| Got: \"%s\"\n", (d >= vec_size(match)) ? "<<nothing else to compare>>" : match[d]);
1242             }
1243
1244             /*
1245              * Print the non-expected out (since we are simply not expecting it)
1246              * This will help track down bugs in template files that fail to match
1247              * something.
1248              */
1249             if (vec_size(match) > vec_size(task_tasks[i].tmpl->comparematch)) {
1250                 for (d = 0; d < vec_size(match) - vec_size(task_tasks[i].tmpl->comparematch); d++) {
1251                     con_out("        Expected: Nothing                                                       | Got: \"%s\"\n",
1252                         match[d + vec_size(task_tasks[i].tmpl->comparematch)]
1253                     );
1254                 }
1255             }
1256
1257
1258             for (j = 0; j < vec_size(match); j++)
1259                 mem_d(match[j]);
1260             vec_free(match);
1261             failed++;
1262             continue;
1263         }
1264
1265         for (j = 0; j < vec_size(match); j++)
1266             mem_d(match[j]);
1267         vec_free(match);
1268
1269         con_out("succeeded: `%s` %*s %*s\n",
1270             task_tasks[i].tmpl->description,
1271             (pad[0] + pad[1] - strlen(task_tasks[i].tmpl->description)) + (strlen(task_tasks[i].tmpl->rulesfile) - pad[1]),
1272             task_tasks[i].tmpl->rulesfile,
1273             (pad[1] + pad[2] - strlen(task_tasks[i].tmpl->rulesfile)) + (strlen(task_type(task_tasks[i].tmpl))- pad[2]),
1274             task_type(task_tasks[i].tmpl)
1275
1276         );
1277     }
1278     mem_d(data);
1279     return failed;
1280 }
1281
1282 /*
1283  * This is the heart of the whole test-suite process.  This cleans up
1284  * any existing temporary files left behind as well as log files left
1285  * behind.  Then it propagates a list of tests from `curdir` by scaning
1286  * it for template files and compiling them into tasks, in which it
1287  * schedualizes them (executes them) and actually reports errors and
1288  * what not.  It then proceeds to destroy the tasks and return memory
1289  * it's the engine :)
1290  *
1291  * It returns true of tests could be propagated, otherwise it returns
1292  * false.
1293  *
1294  * It expects con_init() was called before hand.
1295  */
1296 static GMQCC_WARN bool test_perform(const char *curdir, const char *defs) {
1297     size_t             failed       = false;
1298     static const char *default_defs = "defs.qh";
1299
1300     size_t pad[] = {
1301         /* test ### [succeed/fail]: `description`      [tests/template.tmpl]     [type] */
1302                     0,                                 0,                        0
1303     };
1304
1305     /*
1306      * If the default definition file isn't set to anything.  We will
1307      * use the default_defs here, which is "defs.qc"
1308      */
1309     if (!defs) {
1310         defs = default_defs;
1311     }
1312
1313
1314     task_precleanup(curdir);
1315     if (!task_propagate(curdir, pad, defs)) {
1316         con_err("error: failed to propagate tasks\n");
1317         task_destroy();
1318         return false;
1319     }
1320     /*
1321      * If we made it here all tasks where propagated from their resultant
1322      * template file.  So we can start the FILO scheduler, this has been
1323      * designed in the most thread-safe way possible for future threading
1324      * it's designed to prevent lock contention, and possible syncronization
1325      * issues.
1326      */
1327     failed = task_schedualize(pad);
1328     if (failed)
1329         con_out("%u out of %u tests failed\n", failed, vec_size(task_tasks));
1330     task_destroy();
1331
1332     return (failed) ? false : true;
1333 }
1334
1335 /*
1336  * Fancy GCC-like LONG parsing allows things like --opt=param with
1337  * assignment operator.  This is used for redirecting stdout/stderr
1338  * console to specific files of your choice.
1339  */
1340 static bool parsecmd(const char *optname, int *argc_, char ***argv_, char **out, int ds, bool split) {
1341     int  argc   = *argc_;
1342     char **argv = *argv_;
1343
1344     size_t len = strlen(optname);
1345
1346     if (strncmp(argv[0]+ds, optname, len))
1347         return false;
1348
1349     /* it's --optname, check how the parameter is supplied */
1350     if (argv[0][ds+len] == '=') {
1351         *out = argv[0]+ds+len+1;
1352         return true;
1353     }
1354
1355     if (!split || argc < ds) /* no parameter was provided, or only single-arg form accepted */
1356         return false;
1357
1358     /* using --opt param */
1359     *out = argv[1];
1360     --*argc_;
1361     ++*argv_;
1362     return true;
1363 }
1364
1365 int main(int argc, char **argv) {
1366     bool          succeed  = false;
1367     char         *redirout = (char*)stdout;
1368     char         *redirerr = (char*)stderr;
1369     char         *defs     = NULL;
1370
1371     con_init();
1372     OPTS_OPTION_U16(OPTION_MEMDUMPCOLS) = 16;
1373
1374     /*
1375      * Command line option parsing commences now We only need to support
1376      * a few things in the test suite.
1377      */
1378     while (argc > 1) {
1379         ++argv;
1380         --argc;
1381
1382         if (argv[0][0] == '-') {
1383             if (parsecmd("redirout", &argc, &argv, &redirout, 1, false))
1384                 continue;
1385             if (parsecmd("redirerr", &argc, &argv, &redirerr, 1, false))
1386                 continue;
1387             if (parsecmd("defs",     &argc, &argv, &defs,     1, false))
1388                 continue;
1389
1390             con_change(redirout, redirerr);
1391
1392             if (!strcmp(argv[0]+1, "debug")) {
1393                 OPTS_OPTION_BOOL(OPTION_DEBUG) = true;
1394                 continue;
1395             }
1396             if (!strcmp(argv[0]+1, "memchk")) {
1397                 OPTS_OPTION_BOOL(OPTION_MEMCHK) = true;
1398                 continue;
1399             }
1400             if (!strcmp(argv[0]+1, "nocolor")) {
1401                 con_color(0);
1402                 continue;
1403             }
1404
1405             con_err("invalid argument %s\n", argv[0]+1);
1406             return -1;
1407         }
1408     }
1409     con_change(redirout, redirerr);
1410     succeed = test_perform("tests", defs);
1411     stat_info();
1412
1413     return (succeed) ? EXIT_SUCCESS : EXIT_FAILURE;
1414 }