|
|
|
@ -13,8 +13,7 @@ Tester::Tester(std::string test_name) :
|
|
|
|
|
parent(),
|
|
|
|
|
name(test_name),
|
|
|
|
|
succeeded(0), failed(0),
|
|
|
|
|
detailed(true),
|
|
|
|
|
started(std::chrono::steady_clock::now())
|
|
|
|
|
detailed(true)
|
|
|
|
|
{
|
|
|
|
|
intro();
|
|
|
|
|
}
|
|
|
|
@ -23,8 +22,7 @@ Tester::Tester(Tester* tester_parent, std::string test_name) :
|
|
|
|
|
parent(tester_parent),
|
|
|
|
|
name(test_name),
|
|
|
|
|
succeeded(0), failed(0),
|
|
|
|
|
detailed(false),
|
|
|
|
|
started(std::chrono::steady_clock::now())
|
|
|
|
|
detailed(false)
|
|
|
|
|
{
|
|
|
|
|
intro();
|
|
|
|
|
}
|
|
|
|
@ -33,8 +31,7 @@ Tester::Tester(Tester* tester_parent, std::string test_name, bool show_details)
|
|
|
|
|
parent(tester_parent),
|
|
|
|
|
name(test_name),
|
|
|
|
|
succeeded(0), failed(0),
|
|
|
|
|
detailed(show_details),
|
|
|
|
|
started(std::chrono::steady_clock::now())
|
|
|
|
|
detailed(show_details)
|
|
|
|
|
{
|
|
|
|
|
intro();
|
|
|
|
|
}
|
|
|
|
@ -148,45 +145,17 @@ Tester::~Tester() {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Tester::finish() {
|
|
|
|
|
std::chrono::duration<double> time_taken = std::chrono::steady_clock::now() - started;
|
|
|
|
|
|
|
|
|
|
double time_secs = time_taken.count();
|
|
|
|
|
double time_per_test_secs = time_secs / (succeeded + failed);
|
|
|
|
|
char time_s[20], time_per_s[20];
|
|
|
|
|
if (time_secs < 1e-6) {
|
|
|
|
|
snprintf(time_s, sizeof time_s, "%.1fns", time_secs * 1e9);
|
|
|
|
|
} else if (time_secs < 1e-3) {
|
|
|
|
|
snprintf(time_s, sizeof time_s, "%.1fµs", time_secs * 1e6);
|
|
|
|
|
} else if (time_secs < 1) {
|
|
|
|
|
snprintf(time_s, sizeof time_s, "%.1fms", time_secs * 1e3);
|
|
|
|
|
} else {
|
|
|
|
|
snprintf(time_s, sizeof time_s, "%.1fs", time_secs);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (time_per_test_secs < 1e-6) {
|
|
|
|
|
snprintf(time_per_s, sizeof time_per_s, "%.1fns", time_per_test_secs * 1e9);
|
|
|
|
|
} else if (time_per_test_secs < 1e-3) {
|
|
|
|
|
snprintf(time_per_s, sizeof time_per_s, "%.1fµs", time_per_test_secs * 1e6);
|
|
|
|
|
} else if (time_per_test_secs < 1) {
|
|
|
|
|
snprintf(time_per_s, sizeof time_per_s, "%.1fms", time_per_test_secs * 1e3);
|
|
|
|
|
} else {
|
|
|
|
|
snprintf(time_per_s, sizeof time_per_s, "%.1fs", time_per_test_secs);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
char n_cases_s[10], n_succeeded_s[10], n_failed_s[10];
|
|
|
|
|
snprintf(n_cases_s, sizeof n_cases_s, "%d", succeeded + failed);
|
|
|
|
|
snprintf(n_succeeded_s, sizeof n_succeeded_s, "%d", succeeded);
|
|
|
|
|
snprintf(n_failed_s, sizeof n_failed_s, "%d", failed);
|
|
|
|
|
bool printed = false;
|
|
|
|
|
if (failed == 0) {
|
|
|
|
|
if (shown()) {
|
|
|
|
|
std::cout << prefix() << "=== " << ANSI_GREEN << "all succeeded" << ANSI_RESET << ", out of " << n_cases_s << " total";
|
|
|
|
|
printed = true;
|
|
|
|
|
}
|
|
|
|
|
// printf("[ %s ] - %sall succeeded%s, out of %d total\n", name.c_str(), ANSI_GREEN.c_str(), ANSI_RESET.c_str(), succeeded + failed);
|
|
|
|
|
if (shown())
|
|
|
|
|
std::cout << prefix() << "=== " << ANSI_GREEN << "all succeeded" << ANSI_RESET << ", out of " << n_cases_s << " total" << std::endl;
|
|
|
|
|
} else {
|
|
|
|
|
std::cout << prefix() << "=== " << ANSI_RED << n_failed_s << " failed" << ANSI_RESET << ", " << ANSI_GREEN << n_succeeded_s << " succeeded" << ANSI_RESET << " out of " << n_cases_s << " total";
|
|
|
|
|
printed = true;
|
|
|
|
|
std::cout << prefix() << "=== " << ANSI_RED << n_failed_s << " failed" << ANSI_RESET << ", " << ANSI_GREEN << n_succeeded_s << " succeeded" << ANSI_RESET << " out of " << n_cases_s << " total" << std::endl;
|
|
|
|
|
// printf("[ %s ] - %s%d failed, %d succeeded%s, out of %d total\n", name.c_str(), ANSI_RED.c_str(), failed, succeeded, ANSI_RESET.c_str(), succeeded + failed);
|
|
|
|
|
}
|
|
|
|
|
if (printed)
|
|
|
|
|
std::cout << " (" << ANSI_YELLOW << time_s << ANSI_RESET << " total, " << ANSI_YELLOW << time_per_s << ANSI_RESET << " per test)" << std::endl;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|