diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-11-05 15:23:07 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-11-05 15:23:07 -0800 |
commit | e1cea3090412d94fad1cc706e7c1f09ea7993799 (patch) | |
tree | 76147e12d4b73f870f02f096ccc9a190f357eb0c | |
parent | 6c843af716f29e9016dffa5ad0f29ade26f76e81 (diff) |
add some debug output to test_pgo
-rwxr-xr-x | tests/runner.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/runner.py b/tests/runner.py index 3cefe331..b214b583 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -6927,6 +6927,7 @@ def process(filename): assert 'UnSign|src.cpp:13 : 6 hits, %17 failures' in output, 'no indication of Sign corrections: ' + output return output + print >>sys.stderr, '1' self.do_run(src, '*186854335,63*\n', output_nicerizer=check) Settings.PGO = Settings.CHECK_OVERFLOWS = Settings.CORRECT_OVERFLOWS = Settings.CHECK_SIGNS = Settings.CORRECT_SIGNS = 0 @@ -6940,10 +6941,12 @@ def process(filename): Settings.CORRECT_OVERFLOWS = 2 Settings.CORRECT_OVERFLOWS_LINES = pgo_data['overflows_lines'] + print >>sys.stderr, '2' self.do_run(src, '*186854335,63*\n') # Sanity check: Without PGO, we will fail + print >>sys.stderr, '3' try: self.do_run(src, '*186854335,63*\n') except: |