From 45b22589b364201ba0ac7e3c3db36f8ed2d6eeed Mon Sep 17 00:00:00 2001 From: Dibyendu Majumdar Date: Sat, 8 Oct 2016 16:34:32 +0100 Subject: [PATCH] issue #8 initial attempt to get the tests running --- lua5.1-tests/run.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua5.1-tests/run.sh b/lua5.1-tests/run.sh index ba4537fd66..2cd06ae16f 100644 --- a/lua5.1-tests/run.sh +++ b/lua5.1-tests/run.sh @@ -4,7 +4,7 @@ export LUA_INIT="package.path = '?;'..package.path" luajit -joff all.lua if [ $? != 0 ] then - echo "all.lua tests failed with JIT on" + echo "all.lua tests failed with JIT off" exit 1 fi @@ -12,7 +12,7 @@ fi luajit -jon all.lua if [ $? != 0 ] then - echo "all.lua tests failed with JIT off" + echo "all.lua tests failed with JIT on" exit 1 fi