diff options
Diffstat (limited to 'Build/source/texk')
-rw-r--r-- | Build/source/texk/texlive/linked_scripts/l3build/l3build.lua | 19 |
1 files changed, 4 insertions, 15 deletions
diff --git a/Build/source/texk/texlive/linked_scripts/l3build/l3build.lua b/Build/source/texk/texlive/linked_scripts/l3build/l3build.lua index cf8f66cc1fb..4919d9377f3 100644 --- a/Build/source/texk/texlive/linked_scripts/l3build/l3build.lua +++ b/Build/source/texk/texlive/linked_scripts/l3build/l3build.lua @@ -1,5 +1,3 @@ -#!/usr/bin/env texlua - --[[ File l3build.lua Copyright (C) 2014-2022 The LaTeX Project @@ -25,7 +23,7 @@ for those people who are interested. --]] -- Version information -release_date = "2023-11-01" +release_date = "2023-12-12" -- File operations are aided by the LuaFileSystem module local lfs = require("lfs") @@ -165,16 +163,7 @@ if #checkconfigs > 1 then end if next(failed) then for _,config in ipairs(failed) do - print("Failed tests for configuration \"" .. config .. "\":") - print("\n Check failed with difference files") - local testdir = testdir - if config ~= "build" then - testdir = testdir .. "-" .. config - end - for _,i in ipairs(ordered_filelist(testdir,"*" .. os_diffext)) do - print(" - " .. testdir .. "/" .. i) - end - print("") + checkdiff(config) end if options["show-saves"] then local savecmds, recheckcmds = "", "" @@ -200,8 +189,8 @@ if #checkconfigs > 1 then end print"To regenerate the test files, run\n" print(savecmds) - if recheckcmds ~= "" then - print"To detect engine specific differences, run after that\n" + if recheckcmds ~= "" and #checkengines ~= 1 then + print"To detect engine-specific differences, run after that\n" print(recheckcmds) end end |