diff options
author | Junio C Hamano <gitster@pobox.com> | 2022-04-04 10:56:23 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2022-04-04 10:56:23 -0700 |
commit | fe496dc5b9b527a85d381a3fc8e5f2fda9439842 (patch) | |
tree | 86aaf60c13375db007b695c41f8053783cf892d2 /t | |
parent | Merge branch 'gc/branch-recurse-submodules-fix' (diff) | |
parent | trace2: add stats for fsync operations (diff) | |
download | tgif-fe496dc5b9b527a85d381a3fc8e5f2fda9439842.tar.xz |
Merge branch 'ns/trace2-fsync-stat'
Trace2 code has been taught to report stats for fsync operations.
* ns/trace2-fsync-stat:
trace2: add stats for fsync operations
Diffstat (limited to 't')
-rw-r--r-- | t/t0211/scrub_perf.perl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/t/t0211/scrub_perf.perl b/t/t0211/scrub_perf.perl index d164b750ff..299999f0f8 100644 --- a/t/t0211/scrub_perf.perl +++ b/t/t0211/scrub_perf.perl @@ -59,6 +59,10 @@ while (<>) { # and highly variable. Just omit them. goto SKIP_LINE; } + if ($tokens[$col_category] =~ m/fsync/) { + # fsync events aren't interesting for the test + goto SKIP_LINE; + } } # t_abs and t_rel are either blank or a float. Replace the float |