/* Time measurement for test group */
clock_t start = clock();
- _I("[----------] %d tests from %s\n", testcases.count(it->first), it->first.c_str());
+ _I("[----------] %zu tests from %s\n", testcases.count(it->first), it->first.c_str());
for (auto testcase = range.first; testcase != range.second; ++testcase) {
if (m_stop) break;
if (!filter_name(testcase->second->name())) continue;
testcase->second->run_testcase();
}
- _I("[----------] %d tests from %s (%.4f sec)\n",
+ _I("[----------] %zu tests from %s (%.4f sec)\n",
testcases.count(it->first), it->first.c_str(),
(double)(clock() - start)/ CLOCKS_PER_SEC);
}