mirror of
https://github.com/LuaJIT/LuaJIT.git
synced 2025-02-08 15:34:09 +00:00
15 lines
172 B
Batchfile
15 lines
172 B
Batchfile
|
ECHO off
|
||
|
|
||
|
cd "%~dp0"
|
||
|
|
||
|
SET src=..\src
|
||
|
CALL :normalise "%src%"
|
||
|
|
||
|
set LUA_PATH=%~dp0?.lua;%src%/?.lua
|
||
|
|
||
|
..\src\luajit.exe runtests.lua
|
||
|
pause
|
||
|
|
||
|
:normalise
|
||
|
SET "src=%~f1"
|
||
|
GOTO :EOF
|