[latex3-commits] [git/LaTeX3-latex3-l3build] master: Ensure that .lve-based tests run (23d8297)
Joseph Wright
joseph.wright at morningstar2.co.uk
Fri Aug 3 16:16:57 CEST 2018
Repository : https://github.com/latex3/l3build
On branch : master
Link : https://github.com/latex3/l3build/commit/23d829729c280721907a555d491699294af98c00
>---------------------------------------------------------------
commit 23d829729c280721907a555d491699294af98c00
Author: Joseph Wright <joseph.wright at morningstar2.co.uk>
Date: Fri Aug 3 15:16:57 2018 +0100
Ensure that .lve-based tests run
>---------------------------------------------------------------
23d829729c280721907a555d491699294af98c00
l3build-check.lua | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/l3build-check.lua b/l3build-check.lua
index 46c26e0..34958d8 100644
--- a/l3build-check.lua
+++ b/l3build-check.lua
@@ -557,10 +557,10 @@ function runcheck(name, hide)
end
setup_check(name,engine)
local errlevel = 0
- if fileexists(testfiledir .. "/" .. name .. lvtext) then
- errlevel = check_and_diff(lvtext,engine,enginename,compare_tlg)
- elseif fileexists(testfiledir .. "/" .. name .. pvtext) then
+ if fileexists(testfiledir .. "/" .. name .. pvtext) then
errlevel = check_and_diff(pvtext,engine,enginename,compare_pdf,true)
+ else
+ errlevel = check_and_diff(lvtext,engine,enginename,compare_tlg)
end
if errlevel ~= 0 and options["halt-on-error"] then
return 1
More information about the latex3-commits
mailing list