aboutsummaryrefslogtreecommitdiff
path: root/tests/test_core.py
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2014-01-16 14:42:22 -0800
committerAlon Zakai <alonzakai@gmail.com>2014-01-16 15:42:14 -0800
commit5bb976ed71f1402f8f7853cc9a0c8ea4dd551615 (patch)
tree4cc78b8fb5f7e4bfc94a8baf2775f7d84c39e390 /tests/test_core.py
parent3d771ae92881d253aae30e80a400ba133de08d26 (diff)
add fnmatch; fixes #20021.9.3
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 59f2f9e9..a884ea75 100644
--- a/tests/test_core.py
+++ b/tests/test_core.py
@@ -3705,6 +3705,11 @@ ok
self.do_run_from_file(src, output)
+ def test_fnmatch(self):
+ test_path = path_from_root('tests', 'core', 'fnmatch')
+ src, output = (test_path + s for s in ('.c', '.out'))
+ self.do_run_from_file(src, output)
+
def test_sscanf(self):
if self.emcc_args is None: return self.skip('needs emcc for libc')
if not self.is_le32(): return self.skip('le32 needed for accurate math')