aboutsummaryrefslogtreecommitdiff
path: root/tests/test_core.py
diff options
context:
space:
mode:
authorRyan Kelly <ryan@rfk.id.au>2014-01-28 18:59:50 +1100
committerRyan Kelly <ryan@rfk.id.au>2014-01-31 19:12:10 +1100
commitb175281cb1d1e1a27339bddedfa6ff4fc0822fca (patch)
tree16f2a05def27eaacf9ddbd8817415fcf837d7d00 /tests/test_core.py
parent26900e3bd6946ce74b947e4479b35b683b819ff2 (diff)
Teach buildFlowGraph about functions that are known to always throw.
It can treat calls to these functions like a jump to function exit, allowing for more accurate tracking of dead junctions.
Diffstat (limited to 'tests/test_core.py')
-rw-r--r--tests/test_core.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/test_core.py b/tests/test_core.py
index d0de0031..bbc6370a 100644
--- a/tests/test_core.py
+++ b/tests/test_core.py
@@ -1158,8 +1158,6 @@ class T(RunnerCore): # Short name, to make it more fun to use manually on the co
self.do_run_from_file(src, output)
def test_longjmp_throw(self):
- if self.run_name == 'asm3': return self.skip('issue 2069') # FIXME
-
for disable_throw in [0, 1]:
print disable_throw
Settings.DISABLE_EXCEPTION_CATCHING = disable_throw