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