dfregress.8: Some little cleanup.
[dragonfly.git] / usr.bin / dfregress / main.c
1 /*
2  * Copyright (c) 2011 Alex Hornung <alex@alexhornung.com>.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in
13  *    the documentation and/or other materials provided with the
14  *    distribution.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
19  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE
20  * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
21  * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
22  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
23  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
24  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
25  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
26  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  */
29
30 #include <sys/resource.h>
31 #include <sys/time.h>
32 #include <sys/types.h>
33 #include <sys/wait.h>
34
35 #include <errno.h>
36 #include <limits.h>
37 #include <signal.h>
38 #include <stdio.h>
39 #include <stdlib.h>
40 #include <stdint.h>
41 #include <string.h>
42 #include <unistd.h>
43 #include <pwd.h>
44
45 #include <err.h>
46
47 #include <libprop/proplib.h>
48
49 #include "parser.h"
50 #include "testcase.h"
51 #include "runlist.h"
52 #include <dfregress.h>
53
54
55 static void
56 usage(void)
57 {
58         fprintf(stderr, "Usage: dfregress -o <output plist file> \n"
59             "  -t <testcase directory>\n"
60             "  -p <pre/post command directory>\n"
61             "  -r <input runlist file>\n");
62         exit(1);
63 }
64
65 int
66 main(int argc, char *argv[])
67 {
68         char runlist_file[PATH_MAX];
69         char *p;
70         int ch;
71
72         while ((ch = getopt(argc, argv, "h?o:r:t:p:")) != -1) {
73                 switch (ch) {
74                 case 'o':
75                         if ((p = realpath(optarg, output_file)) == NULL)
76                                 err(1, "realpath(%s)", optarg);
77                         break;
78
79                 case 't':
80                         if ((p = realpath(optarg, testcase_dir)) == NULL)
81                                 err(1, "realpath(%s)", optarg);
82                         break;
83
84                 case 'r':
85                         if ((p = realpath(optarg, runlist_file)) == NULL)
86                                 err(1, "realpath(%s)", optarg);
87                         break;
88
89                 case 'p':
90                         if ((p = realpath(optarg, prepost_dir)) == NULL)
91                                 err(1, "realpath(%s)", optarg);
92                         break;
93
94                 case '?':
95                 case 'h':
96                         usage();
97                         /* NOTREACHED */
98                         break;
99                 }
100         }
101
102         argc -= optind;
103         argv += optind;
104
105         prop_array_t runlist = runlist_load_from_text(runlist_file);
106         runlist_iterate(runlist, runlist_run_test, runlist);
107
108         return 0;
109 }