diff options
author | Alon Zakai <azakai@mozilla.com> | 2010-12-23 14:09:16 -0800 |
---|---|---|
committer | Alon Zakai <azakai@mozilla.com> | 2010-12-23 14:09:16 -0800 |
commit | 2d2751cd5bb1199c4a3b69d0f1576c9b9973eaab (patch) | |
tree | 1a83977e050361067a06e89c75355e235813d3e1 /tests/runner.py | |
parent | 6741bd9da6bb456c34af5acf65a62e302e91b20f (diff) |
comments about expected failures
Diffstat (limited to 'tests/runner.py')
-rw-r--r-- | tests/runner.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/runner.py b/tests/runner.py index f76602c7..f661f3ab 100644 --- a/tests/runner.py +++ b/tests/runner.py @@ -1400,6 +1400,7 @@ if 'benchmark' not in sys.argv: try: self.do_test(src, '*nothingatall*') except Exception, e: + # This test *should* fail, by throwing this exception assert 'Assertion failed: Load-store consistency assumption failure!' in str(e), str(e) def test_check_overflow(self): @@ -1419,6 +1420,7 @@ if 'benchmark' not in sys.argv: try: self.do_test(src, '*nothingatall*') except Exception, e: + # This test *should* fail, by throwing this exception assert 'Overflow!' in str(e), str(e) |