From ad494d6dfbfac0fd88c467ab6fe24d57beda656a Mon Sep 17 00:00:00 2001 From: Dibyendu Majumdar Date: Tue, 11 Oct 2016 23:13:33 +0100 Subject: [PATCH] issue #8 add strings.lua and literals.lua to the execution --- lua-5.2.2-tests/run.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua-5.2.2-tests/run.sh b/lua-5.2.2-tests/run.sh index 2cd06ae16f..4bdd530455 100644 --- a/lua-5.2.2-tests/run.sh +++ b/lua-5.2.2-tests/run.sh @@ -1,7 +1,7 @@ export LUA_PATH="?;./?.lua" export LUA_INIT="package.path = '?;'..package.path" -luajit -joff all.lua +luajit -joff -e"_port=1" all.lua if [ $? != 0 ] then echo "all.lua tests failed with JIT off" @@ -9,7 +9,7 @@ then fi -luajit -jon all.lua +luajit -jon -e"_port=1" all.lua if [ $? != 0 ] then echo "all.lua tests failed with JIT on"