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