diff options
author | Alon Zakai <alonzakai@gmail.com> | 2011-09-25 18:42:46 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2011-09-25 18:42:46 -0700 |
commit | 39b93880df73cb06c33d7eb393b150a7c961f4bd (patch) | |
tree | 25cd6d459e25a2c00ef3530da6fbad95fc4e82a4 /tests | |
parent | 665634f1d74ccfa143f0a56ca3715e080f48b865 (diff) |
automatic checks for missing C defines
Diffstat (limited to 'tests')
-rw-r--r-- | tests/runner.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py index a09008df..610f1e14 100644 --- a/tests/runner.py +++ b/tests/runner.py @@ -2777,7 +2777,7 @@ if 'benchmark' not in str(sys.argv): def test_unistd_confstr(self): src = open(path_from_root('tests', 'unistd', 'confstr.c'), 'r').read() expected = open(path_from_root('tests', 'unistd', 'confstr.out'), 'r').read() - self.do_test(src, expected) + self.do_test(src, expected, extra_emscripten_args=['-H', 'libc/unistd.h']) def test_unistd_ttyname(self): def add_pre_run(filename): |