1 /* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3 * Data Differential YATL (i.e. libtest) library
5 * Copyright (C) 2012 Data Differential, http://datadifferential.com/
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions are
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
14 * * Redistributions in binary form must reproduce the above
15 * copyright notice, this list of conditions and the following disclaimer
16 * in the documentation and/or other materials provided with the
19 * * The names of its contributors may not be used to endorse or
20 * promote products derived from this software without specific prior
23 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
24 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
25 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
26 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
27 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
28 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
29 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
30 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
31 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
32 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
37 #include "libtest/yatlcon.h"
38 #include <libtest/common.h>
50 #include <sys/types.h>
56 #ifndef __INTEL_COMPILER
57 #pragma GCC diagnostic ignored "-Wold-style-cast"
60 using namespace libtest
;
62 static void stats_print(libtest::Framework
*frame
)
64 if (frame
->failed() == 0 and frame
->success() == 0)
70 Out
<< "Collections\t\t\t\t\t" << frame
->total();
71 Out
<< "\tFailed\t\t\t\t\t" << frame
->failed();
72 Out
<< "\tSkipped\t\t\t\t\t" << frame
->skipped();
73 Out
<< "\tSucceeded\t\t\t\t" << frame
->success();
75 Out
<< "Tests\t\t\t\t\t" << frame
->sum_total();
76 Out
<< "\tFailed\t\t\t\t" << frame
->sum_failed();
77 Out
<< "\tSkipped\t\t\t\t" << frame
->sum_skipped();
78 Out
<< "\tSucceeded\t\t\t" << frame
->sum_success();
84 int main(int argc
, char *argv
[])
86 bool opt_massive
= false;
87 unsigned long int opt_repeat
= 1; // Run all tests once
88 bool opt_quiet
= false;
89 std::string collection_to_run
;
91 std::string binary_name
;
93 const char *just_filename
= rindex(argv
[0], '/');
100 just_filename
= argv
[0];
103 if (just_filename
[0] == 'l' and just_filename
[1] == 't' and just_filename
[2] == '-')
107 binary_name
.append(just_filename
);
110 Valgrind does not currently work reliably, or sometimes at all, on OSX
111 - Fri Jun 15 11:24:07 EDT 2012
113 #if defined(__APPLE__) && __APPLE__
114 if (valgrind_is_caller())
124 OPT_LIBYATL_MATCH_COLLECTION
,
127 OPT_LIBYATL_MATCH_WILDCARD
,
131 static struct option long_options
[]=
133 { "version", no_argument
, NULL
, OPT_LIBYATL_VERSION
},
134 { "quiet", no_argument
, NULL
, OPT_LIBYATL_QUIET
},
135 { "repeat", required_argument
, NULL
, OPT_LIBYATL_REPEAT
},
136 { "collection", required_argument
, NULL
, OPT_LIBYATL_MATCH_COLLECTION
},
137 { "wildcard", required_argument
, NULL
, OPT_LIBYATL_MATCH_WILDCARD
},
138 { "massive", no_argument
, NULL
, OPT_LIBYATL_MASSIVE
},
145 int option_rv
= getopt_long(argc
, argv
, "", long_options
, &option_index
);
153 case OPT_LIBYATL_VERSION
:
156 case OPT_LIBYATL_QUIET
:
160 case OPT_LIBYATL_REPEAT
:
162 opt_repeat
= strtoul(optarg
, (char **) NULL
, 10);
165 Error
<< "unknown value passed to --repeat: `" << optarg
<< "`";
170 case OPT_LIBYATL_MATCH_COLLECTION
:
171 collection_to_run
= optarg
;
174 case OPT_LIBYATL_MATCH_WILDCARD
:
178 case OPT_LIBYATL_MASSIVE
:
183 /* getopt_long already printed an error message. */
184 Error
<< "unknown option to getopt_long()";
193 srandom((unsigned int)time(NULL
));
196 if (bool(getenv("YATL_REPEAT")))
199 opt_repeat
= strtoul(getenv("YATL_REPEAT"), (char **) NULL
, 10);
202 Error
<< "ENV YATL_REPEAT passed an invalid value: `" << getenv("YATL_REPEAT") << "`";
207 if ((bool(getenv("YATL_QUIET")) and (strcmp(getenv("YATL_QUIET"), "0") == 0)) or opt_quiet
)
211 else if (getenv("JENKINS_URL"))
213 if (bool(getenv("YATL_QUIET")) and (strcmp(getenv("YATL_QUIET"), "1") == 0))
221 if ((bool(getenv("YATL_RUN_MASSIVE_TESTS"))) or opt_massive
)
228 close(STDOUT_FILENO
);
233 is_massive(opt_massive
);
236 libtest::vchar_t tmp_directory
;
237 tmp_directory
.resize(1024);
238 if (getenv("LIBTEST_TMP"))
240 snprintf(&tmp_directory
[0], tmp_directory
.size(), "%s", getenv("LIBTEST_TMP"));
244 snprintf(&tmp_directory
[0], tmp_directory
.size(), "%s", LIBTEST_TEMP
);
247 if (chdir(&tmp_directory
[0]) == -1)
249 libtest::vchar_t getcwd_buffer
;
250 getcwd_buffer
.resize(1024);
251 char *dir
= getcwd(&getcwd_buffer
[0], getcwd_buffer
.size());
253 Error
<< "Unable to chdir() from " << dir
<< " to " << &tmp_directory
[0] << " errno:" << strerror(errno
);
257 if (libtest::libtool() == NULL
)
259 Error
<< "Failed to locate libtool";
263 if (getenv("YATL_COLLECTION_TO_RUN"))
265 if (strlen(getenv("YATL_COLLECTION_TO_RUN")))
267 collection_to_run
= getenv("YATL_COLLECTION_TO_RUN");
271 if (collection_to_run
.compare("none") == 0)
276 if (collection_to_run
.empty() == false)
278 Out
<< "Only testing " << collection_to_run
;
287 exit_code
= EXIT_SUCCESS
;
288 fatal_assert(sigignore(SIGPIPE
) == 0);
290 libtest::SignalThread signal
;
291 if (signal
.setup() == false)
293 Error
<< "Failed to setup signals";
297 std::auto_ptr
<libtest::Framework
> frame(new libtest::Framework(signal
, binary_name
, collection_to_run
, wildcard
));
299 // Run create(), bail on error.
301 switch (frame
->create())
307 SKIP("SKIP was returned from framework create()");
311 std::cerr
<< "Could not call frame->create()" << std::endl
;
318 if (signal
.is_shutdown() == false)
320 signal
.set_shutdown(SHUTDOWN_GRACEFUL
);
323 shutdown_t status
= signal
.get_shutdown();
324 if (status
== SHUTDOWN_FORCED
)
326 Out
<< "Tests were aborted.";
327 exit_code
= EXIT_FAILURE
;
329 else if (frame
->failed())
331 Out
<< "Some test failed.";
332 exit_code
= EXIT_FAILURE
;
334 else if (frame
->skipped() and frame
->failed() and frame
->success())
336 Out
<< "Some tests were skipped.";
338 else if (frame
->success() and (frame
->failed() == 0))
341 Out
<< "All tests completed successfully.";
344 stats_print(frame
.get());
346 std::ofstream xml_file
;
347 std::string file_name
;
348 file_name
.append(&tmp_directory
[0]);
349 file_name
.append(frame
->name());
350 file_name
.append(".xml");
351 xml_file
.open(file_name
.c_str(), std::ios::trunc
);
352 libtest::Formatter::xml(*frame
, xml_file
);
354 Outn(); // Generate a blank to break up the messages if make check/test has been run
355 } while (exit_code
== EXIT_SUCCESS
and --opt_repeat
);
357 catch (const libtest::__skipped
& e
)
361 catch (const libtest::__failure
& e
)
363 libtest::stream::make_cout(e
.file(), e
.line(), e
.func()) << e
.what();
364 exit_code
= EXIT_FAILURE
;
366 catch (const libtest::fatal
& e
)
368 std::cerr
<< "FATAL:" << e
.what() << std::endl
;
369 exit_code
= EXIT_FAILURE
;
371 catch (const libtest::disconnected
& e
)
373 std::cerr
<< "Unhandled disconnection occurred:" << e
.what() << std::endl
;
374 exit_code
= EXIT_FAILURE
;
376 catch (const std::exception
& e
)
378 std::cerr
<< "std::exception:" << e
.what() << std::endl
;
379 exit_code
= EXIT_FAILURE
;
381 catch (char const* s
)
383 std::cerr
<< "Exception:" << s
<< std::endl
;
384 exit_code
= EXIT_FAILURE
;
388 std::cerr
<< "Unknown exception halted execution." << std::endl
;
389 exit_code
= EXIT_FAILURE
;