diff options
Diffstat (limited to 'Master/texmf-dist/scripts/l3build/l3build-variables.lua')
-rw-r--r-- | Master/texmf-dist/scripts/l3build/l3build-variables.lua | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Master/texmf-dist/scripts/l3build/l3build-variables.lua b/Master/texmf-dist/scripts/l3build/l3build-variables.lua index 38be1c7c5ea..98ce7fd6c0e 100644 --- a/Master/texmf-dist/scripts/l3build/l3build-variables.lua +++ b/Master/texmf-dist/scripts/l3build/l3build-variables.lua @@ -117,6 +117,10 @@ checkengines = checkengines or {"pdftex", "xetex", "luatex"} checkformat = checkformat or "latex" stdengine = stdengine or "pdftex" +-- The tests themselves +includetests = includetests or {"*"} +excludetests = excludetests or { } + -- Configs for testing checkconfigs = checkconfigs or {"build"} @@ -163,7 +167,6 @@ maxprintline = maxprintline or 79 packtdszip = packtdszip or false typesetcmds = typesetcmds or "" typesetruns = typesetruns or 2 -versionform = versionform or "" recordstatus = recordstatus or false -- Extensions for various file types: used to abstract out stuff a bit @@ -174,7 +177,9 @@ lveext = lveext or ".lve" lvtext = lvtext or ".lvt" pdfext = pdfext or ".pdf" psext = psext or ".ps" +pvtext = pvtext or ".pvt" tlgext = tlgext or ".tlg" +tpfext = tpfext or ".tpf" -- Manifest options manifestfile = manifestfile or "MANIFEST.md" |