Skip to content

Commit

Permalink
e7n solved by master
Browse files Browse the repository at this point in the history
  • Loading branch information
jlaurens committed Feb 21, 2021
1 parent 767b9cc commit 41b8e86
Showing 1 changed file with 5 additions and 11 deletions.
16 changes: 5 additions & 11 deletions l3build-check.lua
Expand Up @@ -806,18 +806,12 @@ function runtest(name, engine, hide, ext, pdfmode, breakout)
-- Store secondary files for this engine
for _,filetype in pairs(auxfiles) do
for _,file in pairs(filelist(testdir, filetype)) do
if match(file,"^" .. name .. ".[^.]+$") then
local e7n = match(file, "%.[^.]+$")
if e7n ~= lvtext and
e7n ~= tlgext and
e7n ~= lveext and
e7n ~= logext then
local newname = gsub(file,"(%.[^.]+)$","." .. engine .. "%1")
if fileexists(testdir .. "/" .. newname) then
rm(testdir,newname)
end
ren(testdir,file,newname)
if match(file,"^" .. name .. "%.[^.]+$") then
local newname = gsub(file,"(%.[^.]+)$","." .. engine .. "%1")
if fileexists(testdir .. "/" .. newname) then
rmfile(testdir,newname)
end
ren(testdir,file,newname)
end
end
end
Expand Down

0 comments on commit 41b8e86

Please sign in to comment.