about summary refs log tree commit diff homepage
diff options
context:
space:
mode:
authorFrank Busse <bb0xfb@gmail.com>2022-01-06 18:12:14 +0000
committerMartinNowack <2443641+MartinNowack@users.noreply.github.com>2022-01-07 12:46:01 +0000
commit6bc6adabee048ae57719f21b8878caa3dad76754 (patch)
treebdc1ea6da851fec9f3c7ee26535d4365c1fb2cae
parent486a6bccfc9e7a5d8bb451725eaab440c767de14 (diff)
downloadklee-6bc6adabee048ae57719f21b8878caa3dad76754.tar.gz
klee-stats: fix --print-more
-rwxr-xr-xtools/klee-stats/klee-stats2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/klee-stats/klee-stats b/tools/klee-stats/klee-stats
index 4d191c00..b3673c7e 100755
--- a/tools/klee-stats/klee-stats
+++ b/tools/klee-stats/klee-stats
@@ -145,7 +145,7 @@ def select_columns(record, pr):
                   'CexCacheTime', 'ForkTime', 'ResolveTime']
     elif pr == 'more':
         s_column = ['Path', 'Instructions', 'WallTime', 'ICov', 'BCov', 'ICount',
-                  'RelSolverTime', 'States', 'maxStates', 'MallocUsage', 'maxMem']
+                  'RelSolverTime', 'NumStates', 'MaxStates', 'MallocUsage', 'MaxMem']
     else:
         s_column = ['Path', 'Instructions', 'WallTime', 'ICov',
                   'BCov', 'ICount', 'RelSolverTime']