Skip to content

Commit ffb12fc

Browse files
author
Geoffrey Broadwell
committed
Make --ignore-{startup,compile} Bool flags to improve help text
1 parent 0127224 commit ffb12fc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bench

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ multi MAIN ('time', *@components, :$variants?, :$tests?, :$tests-tagged?,
294294

295295
#= Compare benchmark timings
296296
multi MAIN ('compare', *@timings, :$format?, :$style?, :$outfile?,
297-
:$ignore-startup = True, :$ignore-compile = True) {
297+
Bool :$ignore-startup = True, Bool :$ignore-compile = True) {
298298
needs-timings('compare');
299299

300300
my @options = as-options(:compare, :$ignore-startup, :$ignore-compile, :$format, :$style, :$outfile);
@@ -309,7 +309,7 @@ multi MAIN ('compare', *@timings, :$format?, :$style?, :$outfile?,
309309

310310
#= Compare historical peak performance scores
311311
multi MAIN ('history', *@timings, :$format?, :$style?, :$outfile?,
312-
:$ignore-startup = True, :$ignore-compile = True) {
312+
Bool :$ignore-startup = True, Bool :$ignore-compile = True) {
313313
needs-timings('show history');
314314

315315
my @options = as-options(:compare, :history,

0 commit comments

Comments
 (0)