diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_sanity.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/test_sanity.py b/tests/test_sanity.py index 25858a8b..741bb748 100644 --- a/tests/test_sanity.py +++ b/tests/test_sanity.py @@ -319,6 +319,9 @@ fi output = self.check_working(EMCC) self.assertNotContained(SANITY_MESSAGE, output) + # also with -v + output = self.check_working([EMCC, '-v', path_from_root('tests', 'hello_world.c')], SANITY_MESSAGE) + # Make sure the test runner didn't do anything to the setup output = self.check_working(EMCC) self.assertNotContained(SANITY_MESSAGE, output) |