2 * Copyright (c) 2011 Alex Hornung <alex@alexhornung.com>.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
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
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
30 #include <sys/resource.h>
32 #include <sys/types.h>
47 #include <libprop/proplib.h>
52 #include <dfregress.h>
58 fprintf(stderr
, "Usage: dfregress [options] <input runlist>\n"
59 "Valid options are:\n"
60 " -o <output results plist file>\n"
61 " -t <testcase directory>\n"
62 " -p <pre/post command directory>\n");
67 main(int argc
, char *argv
[])
69 char runlist_file
[PATH_MAX
];
75 while ((ch
= getopt(argc
, argv
, "h?o:t:p:")) != -1) {
78 if ((p
= realpath(optarg
, output_file
)) == NULL
)
79 err(1, "realpath(%s)", optarg
);
84 if ((p
= realpath(optarg
, testcase_dir
)) == NULL
)
85 err(1, "realpath(%s)", optarg
);
90 if ((p
= realpath(optarg
, prepost_dir
)) == NULL
)
91 err(1, "realpath(%s)", optarg
);
109 if ((p
= realpath(argv
[0], runlist_file
)) == NULL
)
110 err(1, "realpath(%s)", argv
[0]);
114 * No explicit testcase directory:
115 * Use default testcase directory - the directory where the
118 strcpy(testcase_dir
, runlist_file
);
119 p
= strrchr(testcase_dir
, '/');
121 fprintf(stderr
, "Unknown error while determining "
122 "default testcase directory. testcase_dir = %s\n",
133 * No explicit output file:
134 * By default we'll take the basename of the runlist file
135 * and append .plist to it in the cwd; i.e.:
136 * /foo/bar/baz.run -> ./baz.plist
138 p
= strrchr(runlist_file
, '/');
140 fprintf(stderr
, "Unknown error while determining "
141 "default output file. runlist_file = %s\n",
149 s
= getcwd(output_file
, PATH_MAX
);
154 strcat(output_file
, "/");
155 strcat(output_file
, p
);
157 if ((p
= strrchr(output_file
, '.')) != NULL
)
161 strcat(output_file
, ".plist");
164 printf("Output plist results:\t%s\n", output_file
);
165 printf("Runlist:\t\t%s\n", runlist_file
);
166 printf("Testcase directory:\t%s\n", testcase_dir
);
169 prop_array_t runlist
= runlist_load_from_text(runlist_file
);
170 runlist_iterate(runlist
, runlist_run_test
, runlist
);