Skip to content

Commit

Permalink
toplev: Support --core for SMT
Browse files Browse the repository at this point in the history
  • Loading branch information
Andi Kleen committed Apr 3, 2015
1 parent 826b1c1 commit 50ac3a6
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions toplev.py
Original file line number Diff line number Diff line change
Expand Up @@ -714,9 +714,13 @@ def print_keys(runner, res, rev, out, interval, env):

# print the non SMT nodes
for j in sorted(res.keys()):
if args.core and not display_core(int(j)):
continue
runner.print_res(out, interval, thread_fmt(j), not_smt_node)
else:
for j in sorted(res.keys()):
if args.core and not display_core(int(j)):
continue
runner.compute(res[j], rev[j], env, lambda obj: True, stat)
runner.print_res(out, interval, j, lambda obj: True)
stat.referenced_check(res)
Expand Down

0 comments on commit 50ac3a6

Please sign in to comment.