aboutsummaryrefslogtreecommitdiff
path: root/tests/test_core.py
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2014-06-02 16:12:58 -0700
committerAlon Zakai <alonzakai@gmail.com>2014-06-02 16:12:58 -0700
commitc9823a494a96e2058f391a1778ad199f733c0423 (patch)
treef1bcbe4ab7e0d62112ee31d69c4579296dcbd0d6 /tests/test_core.py
parent2d819db53b19fea02c3fa5dd8100fcb5fa4d1b4f (diff)
fix very large doubles; fixes #2392
Diffstat (limited to 'tests/test_core.py')
-rw-r--r--tests/test_core.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/test_core.py b/tests/test_core.py
index 505a051b..64cb1657 100644
--- a/tests/test_core.py
+++ b/tests/test_core.py
@@ -797,6 +797,8 @@ 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_floatvars(self):
+ if self.run_name == 'slow2asm': return self.skip('FIXME in slow2asm')
+
test_path = path_from_root('tests', 'core', 'test_floatvars')
src, output = (test_path + s for s in ('.in', '.out'))