]> git.xonotic.org Git - xonotic/gmqcc.git/blob - test.c
Test suite now logs stdout/stderr to respective files
[xonotic/gmqcc.git] / test.c
1 /*
2  * Copyright (C) 2012
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 "gmqcc.h"
24 #include <sys/types.h>
25 #include <sys/stat.h>
26 #include <dirent.h>
27
28 bool  opts_memchk = true;
29 bool  opts_debug  = false;
30 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
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 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 = 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         data->handles[0] = fdopen(inhandle [1], "w");
106         data->handles[1] = fdopen(outhandle[0], mode);
107         data->handles[2] = fdopen(errhandle[0], mode);
108         
109         /* sigh */
110         if (argv)
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         close(0), dup(inhandle [0]);
121         close(1), dup(outhandle[1]);
122         close(2), dup(errhandle[1]);
123         
124         execvp(*argv, argv);
125         exit(1);
126     } else {
127         /* fork failed */
128         goto task_popen_error_3;
129     }
130     
131     if (argv)
132         vec_free(argv);
133     return data->handles;
134         
135 task_popen_error_3: close(errhandle[0]), close(errhandle[1]);
136 task_popen_error_2: close(outhandle[0]), close(outhandle[1]);
137 task_popen_error_1: close(inhandle [0]), close(inhandle [1]);
138 task_popen_error_0:
139
140     if (argv)
141         vec_free(argv);
142     return NULL;
143 }
144
145 int task_pclose(FILE **handles) {
146     popen_t *data   = (popen_t*)handles;
147     int      status = 0;
148     
149     close(data->pipes[0]); /* stdin  */
150     close(data->pipes[1]); /* stdout */
151     close(data->pipes[2]); /* stderr */
152     
153     waitpid(data->pid, &status, 0);
154     
155     mem_d(data);
156     
157     return status;
158 }
159 #endif
160
161 #define TASK_COMPILE 0
162 #define TASK_EXECUTE 1
163
164 /*
165  * Task template system:
166  *  templates are rules for a specific test, used to create a "task" that
167  *  is executed with those set of rules (arguments, and what not). Tests
168  *  that don't have a template with them cannot become tasks, since without
169  *  the information for that test there is no way to properly "test" them.
170  *  Rules for these templates are described in a template file, using a
171  *  task template language.
172  * 
173  *  The language is a basic finite statemachine, top-down single-line
174  *  description language.
175  * 
176  *  The languge is composed entierly of "tags" which describe a string of
177  *  text for a task.  Think of it much like a configuration file.  Except
178  *  it's been designed to allow flexibility and future support for prodecual
179  *  semantics.
180  * 
181  *  The following "tags" are suported by the language
182  * 
183  *      D:
184  *          Used to set a description of the current test, this must be
185  *          provided, this tag is NOT optional.
186  * 
187  *      F:
188  *          Used to set a failure message, this message will be displayed
189  *          if the test fails, this tag is optional
190  * 
191  *      S:
192  *          Used to set a success message, this message will be displayed
193  *          if the test succeeds, this tag is optional.
194  * 
195  *      T:
196  *          Used to set the procedure for the given task, there are two
197  *          options for this:
198  *              -compile
199  *                  This simply performs compilation only
200  *              -execute
201  *                  This will perform compilation and execution
202  * 
203  *          This must be provided, this tag is NOT optional.
204  * 
205  *      C:
206  *          Used to set the compilation flags for the given task, this
207  *          must be provided, this tag is NOT optional.
208  * 
209  *      E:
210  *          Used to set the execution flags for the given task. This tag
211  *          must be provided if T == -execute, otherwise it's erroneous
212  *          as compilation only takes place. 
213  *      
214  *      M:
215  *          Used to describe a string of text that should be matched from
216  *          the output of executing the task.  If this doesn't match the
217  *          task fails.  This tag must be provided if T == -execute, otherwise
218  *          it's erroneous as compilation only takes place.
219  * 
220  *      I:
221  *          Used to specify the INPUT source file to operate on, this must be
222  *          provided, this tag is NOT optional
223  *
224  * 
225  *  Notes:
226  *      These tags have one-time use, using them more than once will result
227  *      in template compilation errors.
228  * 
229  *      Lines beginning with # or // in the template file are comments and
230  *      are ignored by the template parser.
231  * 
232  *      Whitespace is optional, with exception to the colon ':' between the
233  *      tag and it's assignment value/
234  * 
235  *      The template compiler will detect erronrous tags (optional tags
236  *      that need not be set), as well as missing tags, and error accordingly
237  *      this will result in the task failing.
238  */
239 typedef struct {
240     char *description;
241     char *failuremessage;
242     char *successmessage;
243     char *compileflags;
244     char *executeflags;
245     char *comparematch;
246     char *proceduretype;
247     char *sourcefile;
248     char *tempfilename;
249 } task_template_t;
250
251 /*
252  * This is very much like a compiler code generator :-).  This generates
253  * a value from some data observed from the compiler.
254  */
255 bool task_template_generate(task_template_t *template, char tag, const char *file, size_t line, const char *value) {
256     char **destval = NULL;
257     
258     if (!template)
259         return false;
260     
261     switch(tag) {
262         case 'D': destval = &template->description;    break;
263         case 'F': destval = &template->failuremessage; break;
264         case 'S': destval = &template->successmessage; break;
265         case 'T': destval = &template->proceduretype;  break;
266         case 'C': destval = &template->compileflags;   break;
267         case 'E': destval = &template->executeflags;   break;
268         case 'M': destval = &template->comparematch;   break;
269         case 'I': destval = &template->sourcefile;     break;
270         default:
271             con_printmsg(LVL_ERROR, __FILE__, __LINE__, "internal error",
272                 "invalid tag `%c:` during code generation\n",
273                 tag
274             );
275             return false;
276     }
277     
278     /*
279      * Ensure if for the given tag, there already exists a
280      * assigned value.
281      */
282     if (*destval) {
283         con_printmsg(LVL_ERROR, file, line, "compile error",
284             "tag `%c:` already assigned value: %s\n",
285             tag, *destval
286         );
287         return false;
288     }
289     
290     /*
291      * Strip any whitespace that might exist in the value for assignments
292      * like "D:      foo"
293      */
294     if (value && *value && (*value == ' ' || *value == '\t'))
295         value++;
296     
297     /*
298      * Value will contain a newline character at the end, we need to strip
299      * this otherwise kaboom, seriously, kaboom :P
300      */
301     *strrchr(value, '\n')='\0';
302     
303     /*
304      * Now allocate and set the actual value for the specific tag. Which
305      * was properly selected and can be accessed with *destval.
306      */
307     *destval = util_strdup(value);
308     
309     return true;
310 }
311
312 bool task_template_parse(const char *file, task_template_t *template, FILE *fp) {
313     char  *data = NULL;
314     char  *back = NULL;
315     size_t size = 0;
316     size_t line = 1;
317     
318     if (!template)
319         return false;
320     
321     /* top down parsing */
322     while (util_getline(&back, &size, fp) != EOF) {
323         /* skip whitespace */
324         data = back;
325         if (*data && (*data == ' ' || *data == '\t'))
326             data++;
327             
328         switch (*data) {
329             /*
330              * Handle comments inside task template files.  We're strict
331              * about the language for fun :-)
332              */
333             case '/':
334                 if (data[1] != '/') {
335                     con_printmsg(LVL_ERROR, file, line, "template parse error",
336                         "invalid character `/`, perhaps you meant `//` ?");
337                     
338                     mem_d(back);
339                     return false;
340                 }
341             case '#':
342                 break;
343                 
344             /*
345              * Empty newlines are acceptable as well, so we handle that here
346              * despite being just odd since there should't be that many
347              * empty lines to begin with.
348              */
349             case '\r':
350             case '\n':
351                 break;
352                 
353                 
354             /*
355              * Now begin the actual "tag" stuff.  This works as you expect
356              * it to.
357              */
358             case 'D':
359             case 'F':
360             case 'S':
361             case 'T':
362             case 'C':
363             case 'E':
364             case 'M':
365             case 'I':
366                 if (data[1] != ':') {
367                     con_printmsg(LVL_ERROR, file, line, "template parse error",
368                         "expected `:` after `%c`",
369                         *data
370                     );
371                     goto failure;
372                 }
373                 if (!task_template_generate(template, *data, file, line, &data[3])) {
374                     con_printmsg(LVL_ERROR, file, line, "template compile error",
375                         "failed to generate for given task\n"
376                     );
377                     goto failure;
378                 }
379                 break;
380             
381             default:
382                 con_printmsg(LVL_ERROR, file, line, "template parse error",
383                     "invalid tag `%c`", *data
384                 );
385                 goto failure;
386             /* no break required */
387         }
388         
389         /* update line and free old sata */
390         line++;
391         mem_d(back);
392         back = NULL;
393     }
394     if (back)
395         mem_d(back);
396     return true;
397     
398 failure:
399     if (back)
400         mem_d (back);
401     return false;
402 }
403
404 /*
405  * Nullifies the template data: used during initialization of a new
406  * template and free.
407  */
408 void task_template_nullify(task_template_t *template) {
409     if (!template)
410         return;
411         
412     template->description    = NULL;
413     template->failuremessage = NULL;
414     template->successmessage = NULL;
415     template->proceduretype  = NULL;
416     template->compileflags   = NULL;
417     template->executeflags   = NULL;
418     template->comparematch   = NULL;
419     template->sourcefile     = NULL;
420     template->tempfilename   = NULL;
421 }
422
423 task_template_t *task_template_compile(const char *file, const char *dir) {
424     /* a page should be enough */
425     char             fullfile[4096];
426     FILE            *tempfile = NULL;
427     task_template_t *template = NULL;
428     
429     memset  (fullfile, 0, sizeof(fullfile));
430     snprintf(fullfile,    sizeof(fullfile), "%s/%s", dir, file);
431     
432     tempfile = fopen(fullfile, "r");
433     template = mem_a(sizeof(task_template_t));
434     task_template_nullify(template);
435     
436     /*
437      * Esnure the file even exists for the task, this is pretty useless
438      * to even do.
439      */
440     if (!tempfile) {
441         con_err("template file: %s does not exist or invalid permissions\n",
442             file
443         );
444         goto failure;
445     }
446     
447     if (!task_template_parse(file, template, tempfile)) {
448         con_err("template parse error: error during parsing\n");
449         goto failure;
450     }
451     
452     /*
453      * Regardless procedure type, the following tags must exist:
454      *  D
455      *  T
456      *  C
457      *  I
458      */
459     if (!template->description) {
460         con_err("template compile error: %s missing `D:` tag\n", file);
461         goto failure;
462     }
463     if (!template->proceduretype) {
464         con_err("template compile error: %s missing `T:` tag\n", file);
465         goto failure;
466     }
467     if (!template->compileflags) {
468         con_err("template compile error: %s missing `C:` tag\n", file);
469         goto failure;
470     }
471     if (!template->sourcefile) {
472         con_err("template compile error: %s missing `I:` tag\n", file);
473         goto failure;
474     }
475     
476     /*
477      * Now lets compile the template, compilation is really just
478      * the process of validating the input.
479      */
480     if (!strcmp(template->proceduretype, "-compile")) {
481         if (template->executeflags)
482             con_err("template compile warning: %s erroneous tag `E:` when only compiling\n", file);
483         if (template->comparematch)
484             con_err("template compile warning: %s erroneous tag `M:` when only compiling\n", file);
485         goto success;
486     } else if (!strcmp(template->proceduretype, "-execute")) {
487         if (!template->executeflags) {
488             con_err("template compile error: %s missing `E:` tag (use `$null` for exclude)\n", file);
489             goto failure;
490         }
491         if (!template->comparematch) {
492             con_err("template compile error: %s missing `M:` tag (use `$null` for exclude)\n", file);
493             goto failure;
494         }
495     } else {
496         con_err("template compile error: %s invalid procedure type: %s\n", file, template->proceduretype);
497         goto failure;
498     }
499     
500 success:
501     fclose(tempfile);
502     return template;
503     
504 failure:
505     /*
506      * The file might not exist and we jump here when that doesn't happen
507      * so the check to see if it's not null here is required.
508      */
509     if (tempfile)
510         fclose(tempfile);
511     mem_d (template);
512     
513     return NULL;
514 }
515
516 void task_template_destroy(task_template_t **template) {
517     if (!template)
518         return;
519         
520     if ((*template)->description)    mem_d((*template)->description);
521     if ((*template)->failuremessage) mem_d((*template)->failuremessage);
522     if ((*template)->successmessage) mem_d((*template)->successmessage);
523     if ((*template)->proceduretype)  mem_d((*template)->proceduretype);
524     if ((*template)->compileflags)   mem_d((*template)->compileflags);
525     if ((*template)->executeflags)   mem_d((*template)->executeflags);
526     if ((*template)->comparematch)   mem_d((*template)->comparematch);
527     if ((*template)->sourcefile)     mem_d((*template)->sourcefile);
528     
529     /*
530      * Nullify all the template members otherwise NULL comparision
531      * checks will fail if template pointer is reused.
532      */
533     mem_d(*template);
534     task_template_nullify(*template);
535     *template = NULL;
536 }
537
538 /*
539  * Now comes the task manager, this system allows adding tasks in and out
540  * of a task list.  This is the executor of the tasks essentially as well.
541  */
542 typedef struct {
543     task_template_t *template;
544     FILE           **runhandles;
545     FILE            *stderrlog;
546     FILE            *stdoutlog;
547 } task_t;
548
549 task_t *task_tasks = NULL;
550
551 /*
552  * Read a directory and searches for all template files in it
553  * which is later used to run all tests.
554  */
555 bool task_propogate(const char *curdir) {
556     bool             success = true;
557     DIR             *dir;
558     struct dirent   *files;
559     struct stat      directory;
560     char             buffer[4096];
561     
562     dir = opendir(curdir);
563     
564     while ((files = readdir(dir))) {
565         memset  (buffer, 0,sizeof(buffer));
566         snprintf(buffer,   sizeof(buffer), "%s/%s", curdir, files->d_name);
567         
568         if (stat(buffer, &directory) == -1) {
569             con_err("internal error: stat failed, aborting\n");
570             abort();
571         }
572         
573         /* skip directories */
574         if (S_ISDIR(directory.st_mode))
575             continue;
576             
577         /*
578          * We made it here, which concludes the file/directory is not
579          * actually a directory, so it must be a file :)
580          */
581         if (strstr(files->d_name, ".tmpl")) {
582             con_out("compiling task template: %s/%s\n", curdir, files->d_name);
583             task_template_t *template = task_template_compile(files->d_name, curdir);
584             if (!template) {
585                 con_err("error compiling task template: %s\n", files->d_name);
586                 success = false;
587                 continue;
588             }
589             /*
590              * Generate a temportary file name for the output binary
591              * so we don't trample over an existing one.
592              */
593             template->tempfilename = tempnam(curdir, "TMPDAT");
594             
595             /*
596              * Generate the command required to open a pipe to a process
597              * which will be refered to with a handle in the task for
598              * reading the data from the pipe.
599              */
600             char     buf[4096]; /* one page should be enough */
601             memset  (buf,0,sizeof(buf));
602             snprintf(buf,  sizeof(buf), "%s %s/%s %s -o %s",
603                 task_bins[TASK_COMPILE],
604                 curdir,
605                 template->sourcefile,
606                 template->compileflags,
607                 template->tempfilename
608             );
609             
610             /*
611              * The task template was compiled, now lets create a task from
612              * the template data which has now been propogated.
613              */
614             task_t task;
615             task.template = template;
616             if (!(task.runhandles = task_popen(buf, "r"))) {
617                 con_err("error opening pipe to process for test: %s\n", template->description);
618                 success = false;
619                 continue;
620             }
621             
622             /*
623              * Open up some file desciptors for logging the stdout/stderr
624              * to our own.
625              */
626             memset  (buf,0,sizeof(buf));
627             snprintf(buf,  sizeof(buf), "%s/%s.stdout", curdir, template->sourcefile);
628             task.stderrlog = fopen(buf, "w");
629             
630             memset  (buf,0,sizeof(buf));
631             snprintf(buf,  sizeof(buf), "%s/%s.stderr", curdir, template->sourcefile);
632             task.stdoutlog = fopen(buf, "w");
633             
634             con_out("executing test: `%s` [%s]\n", template->description, buf);
635             
636             vec_push(task_tasks, task);
637         }
638     }
639     
640     closedir(dir);
641     return success;
642 }
643
644 /*
645  * Removes all temporary 'progs.dat' files created during compilation
646  * of all tests'
647  */
648 void task_cleanup(const char *curdir) {
649     DIR             *dir;
650     struct dirent   *files;
651     char             buffer[4096];
652
653     dir = opendir(curdir);
654     
655     while ((files = readdir(dir))) {
656         memset(buffer, 0, sizeof(buffer));
657         if (strstr(files->d_name, "TMP")) {
658             snprintf(buffer, sizeof(buffer), "%s/%s", curdir, files->d_name);
659             if (remove(buffer))
660                 con_err("error removing temporary file: %s\n", buffer);
661             else
662                 con_out("removed temporary file: %s\n", buffer);
663         }
664     }
665     
666     closedir(dir);
667 }
668
669 void task_destroy(const char *curdir) {
670     /*
671      * Free all the data in the task list and finally the list itself
672      * then proceed to cleanup anything else outside the program like
673      * temporary files.
674      */
675     size_t i;
676     for (i = 0; i < vec_size(task_tasks); i++) {
677         /*
678          * Close any open handles to files or processes here.  It's mighty
679          * annoying to have to do all this cleanup work.
680          */
681         if (task_tasks[i].runhandles) task_pclose(task_tasks[i].runhandles);
682         if (task_tasks[i].stdoutlog)  fclose     (task_tasks[i].stdoutlog);
683         if (task_tasks[i].stderrlog)  fclose     (task_tasks[i].stderrlog);
684         
685         task_template_destroy(&task_tasks[i].template);
686     }
687     vec_free(task_tasks);
688     
689     /*
690      * Cleanup outside stuff like temporary files.
691      */
692     task_cleanup(curdir);
693 }
694
695 /*
696  * This executes the QCVM task for a specificly compiled progs.dat
697  * using the template passed into it for call-flags and user defined
698  * messages.
699  */
700 bool task_execute(task_template_t *template) {
701     bool     success = false;
702     FILE    *execute;
703     char     buffer[4096];
704     memset  (buffer,0,sizeof(buffer));
705     
706     /*
707      * Drop the execution flags for the QCVM if none where
708      * actually specified.
709      */
710     if (!strcmp(template->executeflags, "$null")) {
711         snprintf(buffer,  sizeof(buffer), "%s %s",
712             task_bins[TASK_EXECUTE],
713             template->tempfilename
714         );
715     } else {
716         snprintf(buffer,  sizeof(buffer), "%s %s %s",
717             task_bins[TASK_EXECUTE],
718             template->executeflags,
719             template->tempfilename
720         );
721     }
722     
723     con_out("executing qcvm: `%s` [%s]\n",
724         template->description,
725         buffer
726     );
727     
728     execute = popen(buffer, "r");
729     if (!execute)
730         return false;
731         
732     /*
733      * Now lets read the lines and compare them to the matches we expect
734      * and handle accordingly.
735      */
736     {
737         char  *data  = NULL;
738         size_t size  = 0;
739         while (util_getline(&data, &size, execute) != EOF) {}
740         
741         if (!strcmp(data, "No main function found\n")) {
742             con_err("test failure: `%s` [%s] (No main function found)\n",
743                 template->description,
744                 (template->failuremessage) ?
745                 template->failuremessage : "unknown"
746             );
747             pclose(execute);
748             return false;
749         }
750         
751         /* 
752          * Trim newlines from data since they will just break our
753          * ability to properly validate matches.
754          */
755         if  (strrchr(data, '\n'))
756             *strrchr(data, '\n') = '\0';
757         
758         /* null list */
759         if (!strcmp(template->comparematch, "$null"))
760             success = true;
761         
762         /*
763          * We only care about the last line from the output for now
764          * implementing multi-line match is TODO.
765          */
766         if (!strcmp(data, template->comparematch))
767             success = true;
768     }
769     pclose(execute);
770     return success;
771 }
772
773 /*
774  * This schedualizes all tasks and actually runs them individually
775  * this is generally easy for just -compile variants.  For compile and
776  * execution this takes more work since a task needs to be generated
777  * from thin air and executed INLINE.
778  */
779 void task_schedualize(const char *curdir) {
780     bool   execute  = false;
781     bool   compiled = true;
782     char  *back     = NULL;
783     char  *data     = NULL;
784     size_t size     = 0;
785     size_t i;
786     
787     for (i = 0; i < vec_size(task_tasks); i++) {
788         /*
789         * Generate a task from thin air if it requires execution in
790         * the QCVM.
791         */
792         if (!strcmp(task_tasks[i].template->proceduretype, "-execute"))
793             execute = true;
794         
795         /*
796          * Read data from stdout first and pipe that stuff into a log file
797          * then we do the same for stderr.
798          */    
799         while (util_getline(&data, &size, task_tasks[i].runhandles[1]) != EOF) {
800             back = data;
801             fwrite(data, 1, size, task_tasks[i].stdoutlog);
802         }
803         while (util_getline(&data, &size, task_tasks[i].runhandles[2]) != EOF) {
804             back = data;
805             
806             /*
807              * If a string contains an error we just dissalow execution
808              * of it in the vm.
809              * 
810              * TODO: make this more percise, e.g if we print a warning
811              * that refers to a variable named error, or something like
812              * that .. then this will blowup :P
813              */
814             if (strstr(data, "error")) {
815                 compiled = false;
816                 execute  = false;
817             }
818             fwrite(data, 1, size, task_tasks[i].stderrlog);
819         }
820         
821         if (back)
822             mem_d(back);
823         
824         /*
825          * If we can execute we do so after all data has been read and
826          * this paticular task has coupled execution in its procedure type
827          */
828         if (!execute)
829             continue;
830         
831         /*
832          * If we made it here that concludes the task is to be executed
833          * in the virtual machine.
834          */
835         if (!task_execute(task_tasks[i].template)) {
836             con_err("test failure: `%s` [%s]\n",
837                 task_tasks[i].template->description,
838                 (task_tasks[i].template->failuremessage) ?
839                 task_tasks[i].template->failuremessage : "unknown"
840             );
841             continue;
842         }
843         
844         con_out("test succeed: `%s` [%s]\n",
845             task_tasks[i].template->description,
846             (task_tasks[i].template->successmessage) ?
847             task_tasks[i].template->successmessage  : "unknown"
848         );
849     }
850     if (back)
851         mem_d(back);
852 }
853
854 int main(int argc, char **argv) {
855     con_init();
856     if (!task_propogate("tests")) {
857         con_err("error: failed to propogate tasks\n");
858         task_destroy("tests");
859         return -1;
860     }
861     /*
862      * If we made it here all tasks where propogated from their resultant
863      * template file.  So we can start the FILO scheduler, this has been
864      * designed in the most thread-safe way possible for future threading
865      * it's designed to prevent lock contention, and possible syncronization
866      * issues.
867      */
868     task_schedualize("tests");
869     task_destroy("tests");
870     
871     util_meminfo();
872     return 0;
873 }