diff options
Diffstat (limited to 'tests/runner.py')
-rw-r--r-- | tests/runner.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/runner.py b/tests/runner.py index 871c76e4..0a8c50dc 100644 --- a/tests/runner.py +++ b/tests/runner.py @@ -1051,8 +1051,8 @@ if 'benchmark' not in sys.argv: def test_bullet(self): self.do_ll_test(path_from_root(['tests', 'bullet', 'bulletTest.ll']), open(path_from_root(['tests', 'bullet', 'output.txt']), 'r').read()) - #def test_lua(self): - # self.do_ll_test(path_from_root(['tests', 'lua', 'lua.ll']), 'hello world!', args=['-e', '''"print('hello world!')"''']) + def test_lua(self): + self.do_ll_test(path_from_root(['tests', 'lua', 'lua.ll']), 'hello lua world!', args=['-e', '''print("hello lua world!")''']) ### Test cases in separate files |