[latex3-commits] [l3svn] branch master updated: l3build: Skip running xdvipdfmx with XeTeX

noreply at latex-project.org noreply at latex-project.org
Sat Sep 26 09:06:51 CEST 2015


This is an automated email from the git hooks/post-receive script.

joseph pushed a commit to branch master
in repository l3svn.

The following commit(s) were added to refs/heads/master by this push:
       new  c627aa1   l3build: Skip running xdvipdfmx with XeTeX
c627aa1 is described below

commit c627aa192f36be4c2e8557238548c6450f3a3cf6
Author: Joseph Wright <joseph.wright at morningstar2.co.uk>
Date:   Sat Sep 26 08:06:11 2015 +0100

    l3build: Skip running xdvipdfmx with XeTeX
    
    There's no need to actually create a PDF: we don't for example
    run dvipdfmx with (u)pTeX.
---
 l3build/l3build.lua |    5 +++++
 1 file changed, 5 insertions(+)

diff --git a/l3build/l3build.lua b/l3build/l3build.lua
index 179b830..489819a 100644
--- a/l3build/l3build.lua
+++ b/l3build/l3build.lua
@@ -1099,6 +1099,11 @@ function runtest(name, engine, hide, ext)
     string.match(engine, "^u?ptex$") then
     realengine = "e" .. engine
   end
+  -- Special casing for XeTeX engine
+  local checkopts = checkopts
+  if string.match(engine, "xetex") then
+    checkopts = checkopts .. " -no-pdf"
+  end
   local logfile = testdir .. "/" .. name .. logext
   local newfile = testdir .. "/" .. name .. "." .. engine .. logext
   local asciiopt = ""

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the latex3-commits mailing list