diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2024-02-25 23:11:48 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2024-02-25 23:18:45 +0100 |
commit | 06c5846c94a82cffd950cce7e9dfc753e1fc7242 (patch) | |
tree | a8223605809d65449fa2f101d83a58a2b5ca85ce | |
parent | 4304eac5d0a809941e75d5441c3a2bff454d7262 (diff) |
test: more orders of magnitude for timing display
-rw-r--r-- | test/app.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/app.cpp b/test/app.cpp index 0cacfe45..af5cc1f9 100644 --- a/test/app.cpp +++ b/test/app.cpp @@ -110,7 +110,7 @@ int test_app::exec() fm_assert(num_tabs <= tab_limit); for (auto i = 0uz; i < num_tabs; i++) std::fputc('\t', s); - std::fprintf(s, "% 9.3f ms\n", (double)ms); + std::fprintf(s, "% 12.3f ms\n", (double)ms); std::fflush(s); } } |