aboutsummaryrefslogtreecommitdiff
path: root/tests/test_core.py
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2014-05-15 12:55:32 -0700
committerAlon Zakai <alonzakai@gmail.com>2014-05-15 12:55:32 -0700
commitcf38e24d7eef9ccf6364a570e321698c675a9c60 (patch)
tree1d7451afc2909468871f090b57b06dbb190a994e /tests/test_core.py
parentafed8b5259db9f5a7e9a417c13669f29d8ae3d15 (diff)
test for #2358
Diffstat (limited to 'tests/test_core.py')
-rw-r--r--tests/test_core.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/test_core.py b/tests/test_core.py
index 6a920a7b..ec5bb9fe 100644
--- a/tests/test_core.py
+++ b/tests/test_core.py
@@ -425,6 +425,11 @@ class T(RunnerCore): # Short name, to make it more fun to use manually on the co
self.do_run_from_file(src, output, 'waka fleefl asdfasdfasdfasdf'.split(' '))
+ def test_double_varargs(self):
+ test_path = path_from_root('tests', 'core', 'test_double_varargs')
+ src, output = (test_path + s for s in ('.c', '.out'))
+ self.do_run_from_file(src, output)
+
def test_i32_mul_precise(self):
if self.emcc_args == None: return self.skip('needs ta2')