diff options
author | Timotej Kapus <tk1713@ic.ac.uk> | 2019-03-26 15:36:30 +0000 |
---|---|---|
committer | MartinNowack <martin.nowack@gmail.com> | 2019-04-04 20:37:41 +0100 |
commit | 0f7b91f802b510e6a7215ef1339484c588fa9e0c (patch) | |
tree | 52123f0436b609cb740b85973b2678603314a6fd /tools | |
parent | dac0af06352ff8dc5508ee06ce7eba8d7f23da2e (diff) | |
download | klee-0f7b91f802b510e6a7215ef1339484c588fa9e0c.tar.gz |
Add klee-stats test, fix microseconds bug
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/klee-stats/klee-stats | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/klee-stats/klee-stats b/tools/klee-stats/klee-stats index 38d8f750..c0171343 100755 --- a/tools/klee-stats/klee-stats +++ b/tools/klee-stats/klee-stats @@ -133,7 +133,7 @@ def getRow(record, stats, pr): if BTot == 0: BFull = BTot = 1 - Ts, Tcex, Tf, Tr = [e / 1000000 for e in [Ts, Tcex, Tf, Tr]] #convert from microseconds + Ts, Tcex, Tf, Tr, T, Treal = [e / 1000000 for e in [Ts, Tcex, Tf, Tr, T, Treal]] #convert from microseconds Mem = Mem / 1024 / 1024 AvgQC = int(QCon / max(1, QTot)) |