mirror of
https://github.com/yhirose/cpp-peglib.git
synced 2025-04-04 01:42:08 +00:00
Update profiler format
This commit is contained in:
parent
b49604997b
commit
de2f887c4f
@ -221,15 +221,28 @@ int main(int argc, const char **argv) {
|
||||
std::cout << " id total % success fail "
|
||||
"definition"
|
||||
<< std::endl;
|
||||
for (auto &[name, success, fail] : stats) {
|
||||
size_t total_total, total_success = 0, total_fail = 0;
|
||||
char buff[BUFSIZ];
|
||||
for (auto &[name, success, fail] : stats) {
|
||||
auto total = success + fail;
|
||||
total_success += success;
|
||||
total_fail += fail;
|
||||
auto ratio = total * 100.0 / stats_item_total;
|
||||
sprintf(buff, "%4zu %10lu %5.2f %10lu %10lu %s", id, total,
|
||||
ratio, success, fail, name.c_str());
|
||||
std::cout << buff << std::endl;
|
||||
id++;
|
||||
}
|
||||
std::cout << std::endl;
|
||||
total_total = total_success + total_fail;
|
||||
sprintf(buff, "%4s %10lu %5s %10lu %10lu %s", "",
|
||||
total_total, "", total_success, total_fail,
|
||||
"Total counters");
|
||||
std::cout << buff << std::endl;
|
||||
sprintf(buff, "%4s %10s %5s %10.2f %10.2f %s", "", "", "",
|
||||
total_success * 100.0 / total_total,
|
||||
total_fail * 100.0 / total_total, "% success/fail");
|
||||
std::cout << buff << std::endl;
|
||||
}
|
||||
}
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user