Skip to content

Commit dae791a

Browse files
committed
[cperf] Flip verbosity default
1 parent 045865e commit dae791a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

run_cperf

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -556,7 +556,11 @@ def parse_args():
556556
help='cperf suite to run',
557557
default='smoketest')
558558
parser.add_argument("--verbose",
559-
action='store_true')
559+
action='store_true',
560+
default=True)
561+
parser.add_argument("--quiet",
562+
action='store_false',
563+
dest='verbose')
560564
parser.add_argument('--skip-build',
561565
action='store_true')
562566
parser.add_argument('--skip-runner',

0 commit comments

Comments
 (0)