aboutsummaryrefslogtreecommitdiff
path: root/tests/test_core.py
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2014-05-28 14:50:35 -0700
committerAlon Zakai <alonzakai@gmail.com>2014-05-28 14:50:35 -0700
commit504b62384aba8da8258ed6f8ba0a455a1db7736a (patch)
tree310e8b2bba9c2ac4ea2c05133905515aa788677d /tests/test_core.py
parent8abdafadfcd61cc9874b4e5ea6b43e3651f26070 (diff)
add emscripten_align typedefs for #2378
Diffstat (limited to 'tests/test_core.py')
-rw-r--r--tests/test_core.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/test_core.py b/tests/test_core.py
index 62a061e2..505a051b 100644
--- a/tests/test_core.py
+++ b/tests/test_core.py
@@ -1980,6 +1980,15 @@ too many setjmps in a function call, build with a higher value for MAX_SETJMPS''
self.do_run_from_file(src, output)
+ def test_set_align(self):
+ if self.run_name == 'slow2asm': return self.skip('FIXME in slow2asm')
+
+ Settings.SAFE_HEAP = 1
+
+ test_path = path_from_root('tests', 'core', 'test_set_align')
+ src, output = (test_path + s for s in ('.c', '.out'))
+ self.do_run_from_file(src, output)
+
def test_emscripten_api(self):
#if Settings.MICRO_OPTS or Settings.RELOOP or Building.LLVM_OPTS: return self.skip('FIXME')