1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
#!/usr/bin/env lua
-- Running tests and/or examples.
local lfs = require "lfs"
local directories = {}
local luacov = false
for _, argument in ipairs(arg) do
if argument == "--help" then
print("Usage: lua run.lua [--luacov] [<dir>]...")
os.exit(0)
elseif argument == "--luacov" then
luacov = true
else
table.insert(directories, argument)
end
end
if #directories == 0 then
directories = {"tests", "examples"}
end
local lua = "lua"
local i = -1
while arg[i] do
lua = arg[i]
i = i - 1
end
if luacov then
lua = lua .. " -lluacov"
end
local dir_sep = package.config:sub(1, 1)
local quote = dir_sep == "/" and "'" or '"'
local pl_src = "lua/?.lua;lua/?/init.lua"
lua = lua .. " -e " .. quote .. "package.path=[[" .. pl_src .. ";]]..package.path" .. quote
local function run_directory(dir)
local files = {}
for path in lfs.dir(dir) do
local full_path = dir .. dir_sep .. path
if path:find("%.lua$") and lfs.attributes(full_path, "mode") == "file" then
table.insert(files, full_path)
end
end
table.sort(files)
for _, file in ipairs(files) do
local cmd = lua .. " " .. file
print("Running " .. file)
local code1, _, code2 = os.execute(cmd)
local code = type(code1) == "number" and code1 or code2
if code ~= 0 then
print(("Running %s failed with code %d"):format(file, code))
os.exit(1)
end
end
end
for _, dir in ipairs(directories) do
print("Running files in " .. dir)
run_directory(dir)
end
print("Run completed successfully")
|