diff options
author | Alon Zakai <alonzakai@gmail.com> | 2011-05-22 10:31:47 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2011-05-22 10:31:47 -0700 |
commit | 2ad8eb7761f8fd18a8f272d1ac5a1de314c3008e (patch) | |
tree | 11c396b22f3039a860dd401a571c0df89cb4d77d /tests/runner.py | |
parent | 588060bcb3c5be0a10ce5ac101c0a6dc43004a5a (diff) |
make autodebugger output smaller
Diffstat (limited to 'tests/runner.py')
-rw-r--r-- | tests/runner.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/runner.py b/tests/runner.py index eeb09978..dcf535e7 100644 --- a/tests/runner.py +++ b/tests/runner.py @@ -2069,7 +2069,7 @@ if 'benchmark' not in sys.argv: # Compare to each other, and to expected output self.do_ll_test(path_from_root('tests', filename+'.o.ll.ll')) - self.do_ll_test(path_from_root('tests', filename+'.o.ll.ll'), 'line: 34, value: 10\nline: 43, value: 7008\nline: 53, value: 7018\n') + self.do_ll_test(path_from_root('tests', filename+'.o.ll.ll'), 'AD:34,10\nAD:43,7008\nAD:53,7018\n') # Test using build_ll_hook src = ''' @@ -2087,7 +2087,7 @@ if 'benchmark' not in sys.argv: } ''' self.do_test(src, build_ll_hook=self.do_autodebug) - self.do_test(src, 'line: ', build_ll_hook=self.do_autodebug) + self.do_test(src, 'AD:', build_ll_hook=self.do_autodebug) def test_dfe(self): global COMPILER_TEST_OPTS; COMPILER_TEST_OPTS = ['-g'] |