X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=libtest%2Ftest.cc;h=ef10028c5800160dabb687448ec433b0bc0ba321;hb=560784bd3bc77b292761ef878dfb5f6205054946;hp=3e5713c90485b004fa06c24e86272721f46e50ec;hpb=7ba11a92a63df071ee3f848c980c8459dc184ebc;p=m6w6%2Flibmemcached diff --git a/libtest/test.cc b/libtest/test.cc index 3e5713c9..ef10028c 100644 --- a/libtest/test.cc +++ b/libtest/test.cc @@ -76,7 +76,8 @@ static long int timedif(struct timeval a, struct timeval b) int main(int argc, char *argv[]) { - bool opt_repeat= false; + bool opt_massive= false; + unsigned long int opt_repeat= 1; // Run all tests once bool opt_quiet= false; std::string collection_to_run; @@ -85,6 +86,7 @@ int main(int argc, char *argv[]) enum long_option_t { OPT_LIBYATL_VERSION, OPT_LIBYATL_MATCH_COLLECTION, + OPT_LIBYATL_MASSIVE, OPT_LIBYATL_QUIET, OPT_LIBYATL_REPEAT }; @@ -95,6 +97,7 @@ int main(int argc, char *argv[]) { "quiet", no_argument, NULL, OPT_LIBYATL_QUIET }, { "repeat", no_argument, NULL, OPT_LIBYATL_REPEAT }, { "collection", required_argument, NULL, OPT_LIBYATL_MATCH_COLLECTION }, + { "massive", no_argument, NULL, OPT_LIBYATL_MASSIVE }, { 0, 0, 0, 0 } }; @@ -117,13 +120,17 @@ int main(int argc, char *argv[]) break; case OPT_LIBYATL_REPEAT: - opt_repeat= true; + opt_repeat= strtoul(optarg, (char **) NULL, 10); break; case OPT_LIBYATL_MATCH_COLLECTION: collection_to_run= optarg; break; + case OPT_LIBYATL_MASSIVE: + opt_massive= true; + break; + case '?': /* getopt_long already printed an error message. */ Error << "unknown option to getopt_long()"; @@ -137,19 +144,18 @@ int main(int argc, char *argv[]) srandom((unsigned int)time(NULL)); - int repeat; - if (bool(getenv("YATL_REPEAT")) and (repeat= atoi(getenv("YATL_REPEAT")))) + if (bool(getenv("YATL_REPEAT")) and (strtoul(getenv("YATL_REPEAT"), (char **) NULL, 10) > 1)) { - opt_repeat= true; + opt_repeat= strtoul(getenv("YATL_REPEAT"), (char **) NULL, 10); } - if ((getenv("YATL_QUIET") and strcmp(getenv("YATL_QUIET"), "0") == 0) or opt_quiet) + if ((bool(getenv("YATL_QUIET")) and (strcmp(getenv("YATL_QUIET"), "0") == 0)) or opt_quiet) { opt_quiet= true; } else if (getenv("JENKINS_URL")) { - if (getenv("YATL_QUIET") and strcmp(getenv("YATL_QUIET"), "1") == 0) + if (bool(getenv("YATL_QUIET")) and (strcmp(getenv("YATL_QUIET"), "1") == 0)) { } else { @@ -223,14 +229,19 @@ int main(int argc, char *argv[]) return EXIT_FAILURE; } - if (getenv("TEST_COLLECTION")) + if (getenv("YATL_COLLECTION_TO_RUN")) { - if (strlen(getenv("TEST_COLLECTION"))) + if (strlen(getenv("YATL_COLLECTION_TO_RUN"))) { - collection_to_run= getenv("TEST_COLLECTION"); + collection_to_run= getenv("YATL_COLLECTION_TO_RUN"); } } + if (collection_to_run.compare("none") == 0) + { + return EXIT_SUCCESS; + } + if (collection_to_run.empty() == false) { Out << "Only testing " << collection_to_run; @@ -278,7 +289,7 @@ int main(int argc, char *argv[]) goto cleanup; default: - throw fatal_message("invalid return code"); + fatal_message("invalid return code"); } Out << "Collection: " << next->name; @@ -350,6 +361,11 @@ int main(int argc, char *argv[]) } } + catch (libtest::fatal &e) + { + Error << "Fatal exception was thrown: " << e.what(); + return_code= TEST_FAILURE; + } catch (std::exception &e) { Error << "Exception was thrown: " << e.what(); @@ -383,7 +399,7 @@ int main(int argc, char *argv[]) break; default: - throw fatal_message("invalid return code"); + fatal_message("invalid return code"); } if (test_failed(world.on_error(return_code, creators_ptr))) @@ -444,7 +460,7 @@ cleanup: stats_print(&stats); Outn(); // Generate a blank to break up the messages if make check/test has been run - } while (exit_code == EXIT_SUCCESS and opt_repeat); + } while (exit_code == EXIT_SUCCESS and --opt_repeat); } catch (libtest::fatal& e) {