diff options
author | Junio C Hamano <gitster@pobox.com> | 2017-05-01 14:14:42 +0900 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-05-01 14:14:42 +0900 |
commit | d9dfed9e47436644bcb7dec24cdb1c1975f70910 (patch) | |
tree | c204619c5a97617b48ac5d11c5de9b594abc0e32 /t/perf/aggregate.perl | |
parent | b439747bc1074f6f325987d6f2b1a38119d3b863 (diff) | |
parent | db7ed0f20c2929f3054c96497dd1cf482a198c7b (diff) | |
download | git-d9dfed9e47436644bcb7dec24cdb1c1975f70910.tar.gz |
Merge branch 'ab/align-perf-descriptions'
Output from perf tests have been updated to align their titles.
* ab/align-perf-descriptions:
t/perf: correctly align non-ASCII descriptions in output
Diffstat (limited to 't/perf/aggregate.perl')
-rwxr-xr-x | t/perf/aggregate.perl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/t/perf/aggregate.perl b/t/perf/aggregate.perl index 924b19dab4..1dbc85b214 100755 --- a/t/perf/aggregate.perl +++ b/t/perf/aggregate.perl @@ -88,6 +88,7 @@ for my $t (@tests) { sub read_descr { my $name = shift; open my $fh, "<", $name or return "<error reading description>"; + binmode $fh, ":utf8" or die "PANIC on binmode: $!"; my $line = <$fh>; close $fh or die "cannot close $name"; chomp $line; @@ -147,6 +148,8 @@ for my $t (@subtests) { my $totalwidth = 3*@dirs+$descrlen; $totalwidth += $_ for (@colwidth); +binmode STDOUT, ":utf8" or die "PANIC on binmode: $!"; + printf "%-${descrlen}s", "Test"; for my $i (0..$#dirs) { my $d = $dirs[$i]; |