From 8bee70d3ce327f27fc0cf8f7c092a7317d88173a Mon Sep 17 00:00:00 2001 From: Frank Busse Date: Thu, 4 Apr 2019 18:18:38 +0100 Subject: klee-stats: add - to to-csv/grafana options --- tools/klee-stats/klee-stats | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tools') diff --git a/tools/klee-stats/klee-stats b/tools/klee-stats/klee-stats index c0171343..2aafb1fa 100755 --- a/tools/klee-stats/klee-stats +++ b/tools/klee-stats/klee-stats @@ -22,7 +22,7 @@ try: except: print('Error: Package "tabulate" required for table formatting. ' 'Please install it using "pip" or your package manager.' - 'You can still use -grafana and -to-csv without tabulate.', + 'You can still use --grafana and --to-csv without tabulate.', file=sys.stderr) Legend = [ @@ -229,10 +229,10 @@ def main(): choices=['klee'] + list(_table_formats.keys()), dest='tableFormat', default='klee', help='Table format for the summary.') - parser.add_argument('-to-csv', + parser.add_argument('--to-csv', action='store_true', dest='toCsv', help='Output stats as comma-separated values (CSV)') - parser.add_argument('-grafana', + parser.add_argument('--grafana', action='store_true', dest='grafana', help='Start a grafana web server') -- cgit 1.4.1