|
@@ -41,11 +41,7 @@ class TestCommandBase extends haxe.unit.TestCase {
|
|
|
#elseif php
|
|
|
run(untyped __php__("defined('PHP_BINARY') ? PHP_BINARY : 'php'"), [bin].concat(args));
|
|
|
#elseif lua
|
|
|
- if (lua.Lua.type(untyped jit) == "table"){
|
|
|
- run("luajit", [bin].concat(args));
|
|
|
- } else {
|
|
|
- run("lua", [bin].concat(args));
|
|
|
- }
|
|
|
+ run("lua", [bin].concat(args));
|
|
|
#else
|
|
|
-1;
|
|
|
#end
|
|
@@ -129,11 +125,7 @@ class TestCommandBase extends haxe.unit.TestCase {
|
|
|
#elseif php
|
|
|
run(untyped __php__("defined('PHP_BINARY') ? PHP_BINARY : 'php'"), [bin].concat(args));
|
|
|
#elseif lua
|
|
|
- if (lua.Lua.type(untyped jit) == "table"){
|
|
|
- run("luajit", [bin].concat(args));
|
|
|
- } else {
|
|
|
- run("lua", [bin].concat(args));
|
|
|
- }
|
|
|
+ run("lua", [bin].concat(args));
|
|
|
#else
|
|
|
-1;
|
|
|
#end
|