blob: 10447196710fce0bf07e1f04a2bf37586a61e6c6 (
plain)
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
--[[
File l3build.lua Copyright (C) 2014-2017 The LaTeX3 Project
It may be distributed and/or modified under the conditions of the
LaTeX Project Public License (LPPL), either version 1.3c of this
license or (at your option) any later version. The latest version
of this license is in the file
http://www.latex-project.org/lppl.txt
This file is part of the "l3build bundle" (The Work in LPPL)
and all files in that bundle must be distributed together.
-----------------------------------------------------------------------
The development version of the bundle can be found at
https://github.com/latex3/l3build
for those people who are interested.
--]]
-- Version information
release_date = "2018/02/20"
-- File operations are aided by the LuaFileSystem module
local lfs = require("lfs")
-- Local access to functions
local assert = assert
local ipairs = ipairs
local next = next
local print = print
local select = select
local tonumber = tonumber
local exit = os.exit
-- l3build setup and functions
kpse.set_program_name("kpsewhich")
build_kpse_path = string.match(kpse.lookup("l3build.lua"),"(.*[/])")
local function build_require(s)
require( kpse.lookup("l3build-"..s..".lua", { path = build_kpse_path } ) )
end
build_require("variables")
build_require("arguments")
build_require("file-functions")
build_require("typesetting")
build_require("aux")
build_require("clean")
build_require("check")
build_require("ctan")
build_require("install")
build_require("unpack")
build_require("manifest")
build_require("manifest-setup")
build_require("setversion")
build_require("help")
build_require("stdmain")
-- Allow main function to be disabled 'higher up'
main = main or stdmain
-- Deal with multiple configs for tests
checkconfigs = options["config"] or checkconfigs
if options["target"] == "check" then
if #checkconfigs > 1 then
local errorlevel = 0
local opts = options
for i = 1, #checkconfigs do
opts["config"] = {checkconfigs[i]}
errorlevel = call({"."}, "check", opts)
if errorlevel ~= 0 then exit(1) end
end
-- Avoid running the 'main' set of tests twice
exit(0)
end
end
if #checkconfigs == 1 and
checkconfigs[1] ~= stdconfig and
(options["target"] == "check" or options["target"] == "save") then
local config = "./" .. checkconfigs[1] .. ".lua"
if fileexists(config) then
dofile(config)
else
print("Error: Cannot find configuration " .. checkconfigs[1])
exit(1)
end
end
-- Call the main function
main(options["target"], options["files"])
|