[latex3-commits] [git/LaTeX3-latex3-luaotfload] v3.15-20200831: try to run both latex and latex-dev (76ce206)
Ulrike Fischer
fischer at troubleshooting-tex.de
Tue Sep 1 11:36:49 CEST 2020
Repository : https://github.com/latex3/luaotfload
On branch : v3.15-20200831
Link : https://github.com/latex3/luaotfload/commit/76ce2062166d625bd47fa9e44ceb2ebe0ba4a38e
>---------------------------------------------------------------
commit 76ce2062166d625bd47fa9e44ceb2ebe0ba4a38e
Author: Ulrike Fischer <fischer at troubleshooting-tex.de>
Date: Tue Sep 1 11:36:49 2020 +0200
try to run both latex and latex-dev
>---------------------------------------------------------------
76ce2062166d625bd47fa9e44ceb2ebe0ba4a38e
build.lua | 13 ++++++++++---
config-unicode-math.lua => config-onlydev.lua | 3 ++-
config-unicode-math.lua => config-onlyrelease.lua | 3 ++-
.../lmdefault-mathrm-it-bf.lvt | 0
.../lmdefault-mathrm-it-bf.tlg | 0
.../mathoperator-mathbf.lvt | 0
.../mathoperator-mathbf.tlg | 0
{testfiles-unicode-math => testfiles-onlydev}/nesting.lvt | 0
{testfiles-unicode-math => testfiles-onlydev}/nesting.tlg | 0
.../operatorname.lvt | 0
.../operatorname.tlg | 0
.../support}/fontpond-lower-uppercase.lua | 0
{testfiles => testfiles-onlydev}/support/luaotfload.conf | 0
.../support/umtest-preamble.tex | 0
.../support}/fontpond-lower-uppercase.lua | 0
.../support/luaotfload.conf | 0
.../support/umtest-preamble.tex | 0
17 files changed, 14 insertions(+), 5 deletions(-)
diff --git a/build.lua b/build.lua
index 5555443..5eb8fcc 100644
--- a/build.lua
+++ b/build.lua
@@ -69,10 +69,17 @@ local ismiktex = string.match (luatexstatus.banner,"MiKTeX")
-- l3build check settings
-checkformat = master_branch and "latex" or "latex-dev"
+ stdengine = "luatex"
+
+checkformat = "latex"
+specialformats = specialformats or {}
+specialformats["latex"] = specialformats["latex"] or
+ {
+ luatexdev = {binary="luahbtex" ,format = "lualatex-dev"},
+ luatex = {binary="luahbtex" ,format = "lualatex"}
+ }
-stdengine = "luatex"
-checkengines = {"luatex"}
+checkengines = {"luatex","luatexdev"}
checkconfigs = {
"build",
diff --git a/config-unicode-math.lua b/config-onlydev.lua
similarity index 53%
copy from config-unicode-math.lua
copy to config-onlydev.lua
index 0ca98e1..0f1d5a1 100644
--- a/config-unicode-math.lua
+++ b/config-onlydev.lua
@@ -1,4 +1,5 @@
-testfiledir = "testfiles-unicode-math"
+testfiledir = "testfiles-onlydev"
+checkengines = {"luatexdev"}
testsuppdir = testfiledir .. "/support"
recordstatus = true
checkruns=1
diff --git a/config-unicode-math.lua b/config-onlyrelease.lua
similarity index 53%
copy from config-unicode-math.lua
copy to config-onlyrelease.lua
index 0ca98e1..7e10b39 100644
--- a/config-unicode-math.lua
+++ b/config-onlyrelease.lua
@@ -1,4 +1,5 @@
-testfiledir = "testfiles-unicode-math"
+testfiledir = "testfiles-onlyrelease"
+checkengines = {"luatex"}
testsuppdir = testfiledir .. "/support"
recordstatus = true
checkruns=1
diff --git a/testfiles-unicode-math/lmdefault-mathrm-it-bf.lvt b/testfiles-onlydev/lmdefault-mathrm-it-bf.lvt
similarity index 100%
rename from testfiles-unicode-math/lmdefault-mathrm-it-bf.lvt
rename to testfiles-onlydev/lmdefault-mathrm-it-bf.lvt
diff --git a/testfiles-unicode-math/lmdefault-mathrm-it-bf.tlg b/testfiles-onlydev/lmdefault-mathrm-it-bf.tlg
similarity index 100%
rename from testfiles-unicode-math/lmdefault-mathrm-it-bf.tlg
rename to testfiles-onlydev/lmdefault-mathrm-it-bf.tlg
diff --git a/testfiles-unicode-math/mathoperator-mathbf.lvt b/testfiles-onlydev/mathoperator-mathbf.lvt
similarity index 100%
rename from testfiles-unicode-math/mathoperator-mathbf.lvt
rename to testfiles-onlydev/mathoperator-mathbf.lvt
diff --git a/testfiles-unicode-math/mathoperator-mathbf.tlg b/testfiles-onlydev/mathoperator-mathbf.tlg
similarity index 100%
rename from testfiles-unicode-math/mathoperator-mathbf.tlg
rename to testfiles-onlydev/mathoperator-mathbf.tlg
diff --git a/testfiles-unicode-math/nesting.lvt b/testfiles-onlydev/nesting.lvt
similarity index 100%
rename from testfiles-unicode-math/nesting.lvt
rename to testfiles-onlydev/nesting.lvt
diff --git a/testfiles-unicode-math/nesting.tlg b/testfiles-onlydev/nesting.tlg
similarity index 100%
rename from testfiles-unicode-math/nesting.tlg
rename to testfiles-onlydev/nesting.tlg
diff --git a/testfiles-unicode-math/operatorname.lvt b/testfiles-onlydev/operatorname.lvt
similarity index 100%
rename from testfiles-unicode-math/operatorname.lvt
rename to testfiles-onlydev/operatorname.lvt
diff --git a/testfiles-unicode-math/operatorname.tlg b/testfiles-onlydev/operatorname.tlg
similarity index 100%
rename from testfiles-unicode-math/operatorname.tlg
rename to testfiles-onlydev/operatorname.tlg
diff --git a/testfiles/support-reference/fontpond-lower-uppercase.lua b/testfiles-onlydev/support/fontpond-lower-uppercase.lua
similarity index 100%
copy from testfiles/support-reference/fontpond-lower-uppercase.lua
copy to testfiles-onlydev/support/fontpond-lower-uppercase.lua
diff --git a/testfiles/support/luaotfload.conf b/testfiles-onlydev/support/luaotfload.conf
similarity index 100%
copy from testfiles/support/luaotfload.conf
copy to testfiles-onlydev/support/luaotfload.conf
diff --git a/testfiles-unicode-math/support/umtest-preamble.tex b/testfiles-onlydev/support/umtest-preamble.tex
similarity index 100%
copy from testfiles-unicode-math/support/umtest-preamble.tex
copy to testfiles-onlydev/support/umtest-preamble.tex
diff --git a/testfiles/support-reference/fontpond-lower-uppercase.lua b/testfiles-onlyrelease/support/fontpond-lower-uppercase.lua
similarity index 100%
copy from testfiles/support-reference/fontpond-lower-uppercase.lua
copy to testfiles-onlyrelease/support/fontpond-lower-uppercase.lua
diff --git a/testfiles/support/luaotfload.conf b/testfiles-onlyrelease/support/luaotfload.conf
similarity index 100%
copy from testfiles/support/luaotfload.conf
copy to testfiles-onlyrelease/support/luaotfload.conf
diff --git a/testfiles-unicode-math/support/umtest-preamble.tex b/testfiles-onlyrelease/support/umtest-preamble.tex
similarity index 100%
copy from testfiles-unicode-math/support/umtest-preamble.tex
copy to testfiles-onlyrelease/support/umtest-preamble.tex
More information about the latex3-commits
mailing list.