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