[latex3-commits] [git/LaTeX3-latex3-l3build] new-types: Add documentation (037ba13)
Marcel Fabian Krüger
zauguin at gmail.com
Thu Oct 22 17:02:23 CEST 2020
Repository : https://github.com/latex3/l3build
On branch : new-types
Link : https://github.com/latex3/l3build/commit/037ba1322f79f44ae6c6969eb81cfe2269cf4a77
>---------------------------------------------------------------
commit 037ba1322f79f44ae6c6969eb81cfe2269cf4a77
Author: Marcel Fabian Krüger <zauguin at gmail.com>
Date: Thu Oct 22 17:02:23 2020 +0200
Add documentation
>---------------------------------------------------------------
037ba1322f79f44ae6c6969eb81cfe2269cf4a77
l3build.dtx | 34 ++++++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+)
diff --git a/l3build.dtx b/l3build.dtx
index 1980424..0f042e5 100644
--- a/l3build.dtx
+++ b/l3build.dtx
@@ -114,6 +114,8 @@
\luavarset{stdengine} {"pdftex"}{Engine to generate \texttt{.tlg} file from}
\luavarset{checkformat} {"latex"} {Format to use for tests}
\luavarset{specialformats}{\meta{table}} {Non-standard engine/format combinations}
+\luavarset{test_types} {\meta{table}} {Custom test variants}
+\luavarset{test_order} {\{"log", "pdf"\}} {Which kinds of tests to evaluate}
\luavarseparator
\luavarset{checkconfigs}{\{\}}{Configurations to use for tests}
\luavarseparator
@@ -1246,6 +1248,38 @@
% engine-specific, thus one |.tpf| file should be stored per engine to be
% tested.
%
+% \subsection{Custom tests}
+%
+% If neither the text-based methods nor PDF-based tests are sufficient,
+% there is the additional option of defining custom variants with individual
+% normalization rules.
+%
+% For this, the variant has to be registered in the \texttt{test_types} table
+% and then activated in \texttt{test_order}.
+%
+% Every element in \texttt{test_types} is a table with fields \texttt{test}
+% (the extension of the test file), \texttt{reference} (the extension of the
+% file the output is compared with), \texttt{generated} (extension of the
+% analyzed \LaTeX{} output file) and \texttt{rewrite} (A Lua function for
+% normalizing the output file, taking as parameters the name of the unnormalized
+% \LaTeX{} output file to be read, the name of the normalized file to be written,
+% the engine name and a potential errorcode).
+%
+% For example:
+% \begin{verbatim}
+% test_types = {
+% mytest = {
+% test = ".mylvt",
+% reference = ".mytlg",
+% generated = ".log",
+% rewrite = function(source, normalized, engine, errorcode)
+% -- In this example we just copy the logfile without any normalization
+% os.execute(string.format("cp %s %s", source, normalized)
+% end,
+% },
+% }
+% test_order = {"mylvt", "log", "pdf"}
+% \end{verbatim}
%
% \section{Release-focussed features}
%
More information about the latex3-commits
mailing list.