Skip to content

Commit

Permalink
Show boxes differently in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
moewew committed Jan 2, 2024
1 parent 0ad3c76 commit 8f9d5a8
Show file tree
Hide file tree
Showing 39 changed files with 2,798 additions and 5,544 deletions.
216 changes: 72 additions & 144 deletions testfiles-pdflatex-dev/latex-dev-style-ext-authoryear-icomp.tlg

Large diffs are not rendered by default.

216 changes: 72 additions & 144 deletions testfiles-pdflatex-dev/latex-dev-style-ext-numeric.tlg

Large diffs are not rendered by default.

216 changes: 72 additions & 144 deletions testfiles/style-ext-alphabetic-verb.tlg

Large diffs are not rendered by default.

216 changes: 72 additions & 144 deletions testfiles/style-ext-alphabetic.tlg

Large diffs are not rendered by default.

234 changes: 78 additions & 156 deletions testfiles/style-ext-authornumber-comp.tlg

Large diffs are not rendered by default.

234 changes: 78 additions & 156 deletions testfiles/style-ext-authornumber-ecomp.tlg

Large diffs are not rendered by default.

234 changes: 78 additions & 156 deletions testfiles/style-ext-authornumber-tcomp.tlg

Large diffs are not rendered by default.

234 changes: 78 additions & 156 deletions testfiles/style-ext-authornumber-tecomp.tlg

Large diffs are not rendered by default.

234 changes: 78 additions & 156 deletions testfiles/style-ext-authornumber-terse.tlg

Large diffs are not rendered by default.

234 changes: 78 additions & 156 deletions testfiles/style-ext-authornumber.tlg

Large diffs are not rendered by default.

216 changes: 72 additions & 144 deletions testfiles/style-ext-authortitle-comp.tlg

Large diffs are not rendered by default.

216 changes: 72 additions & 144 deletions testfiles/style-ext-authortitle-ibid.tlg

Large diffs are not rendered by default.

216 changes: 72 additions & 144 deletions testfiles/style-ext-authortitle-icomp.tlg

Large diffs are not rendered by default.

216 changes: 72 additions & 144 deletions testfiles/style-ext-authortitle-tcomp.tlg

Large diffs are not rendered by default.

216 changes: 72 additions & 144 deletions testfiles/style-ext-authortitle-terse.tlg

Large diffs are not rendered by default.

216 changes: 72 additions & 144 deletions testfiles/style-ext-authortitle-ticomp.tlg

Large diffs are not rendered by default.

216 changes: 72 additions & 144 deletions testfiles/style-ext-authortitle.tlg

Large diffs are not rendered by default.

216 changes: 72 additions & 144 deletions testfiles/style-ext-authoryear-comp.tlg

Large diffs are not rendered by default.

216 changes: 72 additions & 144 deletions testfiles/style-ext-authoryear-ecomp.tlg

Large diffs are not rendered by default.

216 changes: 72 additions & 144 deletions testfiles/style-ext-authoryear-ibid.tlg

Large diffs are not rendered by default.

216 changes: 72 additions & 144 deletions testfiles/style-ext-authoryear-icomp.tlg

Large diffs are not rendered by default.

216 changes: 72 additions & 144 deletions testfiles/style-ext-authoryear-iecomp.tlg

Large diffs are not rendered by default.

216 changes: 72 additions & 144 deletions testfiles/style-ext-authoryear-tcomp.tlg

Large diffs are not rendered by default.

216 changes: 72 additions & 144 deletions testfiles/style-ext-authoryear-tecomp.tlg

Large diffs are not rendered by default.

216 changes: 72 additions & 144 deletions testfiles/style-ext-authoryear-terse.tlg

Large diffs are not rendered by default.

216 changes: 72 additions & 144 deletions testfiles/style-ext-authoryear-ticomp.tlg

Large diffs are not rendered by default.

216 changes: 72 additions & 144 deletions testfiles/style-ext-authoryear-tiecomp.tlg

Large diffs are not rendered by default.

216 changes: 72 additions & 144 deletions testfiles/style-ext-authoryear.tlg

Large diffs are not rendered by default.

216 changes: 72 additions & 144 deletions testfiles/style-ext-numeric-comp.tlg

Large diffs are not rendered by default.

216 changes: 72 additions & 144 deletions testfiles/style-ext-numeric-verb.tlg

Large diffs are not rendered by default.

216 changes: 72 additions & 144 deletions testfiles/style-ext-numeric.tlg

Large diffs are not rendered by default.

216 changes: 72 additions & 144 deletions testfiles/style-ext-verbose-ibid.tlg

Large diffs are not rendered by default.

216 changes: 72 additions & 144 deletions testfiles/style-ext-verbose-inote.tlg

Large diffs are not rendered by default.

216 changes: 72 additions & 144 deletions testfiles/style-ext-verbose-note.tlg

Large diffs are not rendered by default.

216 changes: 72 additions & 144 deletions testfiles/style-ext-verbose-trad1.tlg

Large diffs are not rendered by default.

216 changes: 72 additions & 144 deletions testfiles/style-ext-verbose-trad2.tlg

Large diffs are not rendered by default.

216 changes: 72 additions & 144 deletions testfiles/style-ext-verbose-trad3.tlg

Large diffs are not rendered by default.

216 changes: 72 additions & 144 deletions testfiles/style-ext-verbose.tlg

Large diffs are not rendered by default.

26 changes: 26 additions & 0 deletions testsupport/testbiblatex-boxsetup.tex
Original file line number Diff line number Diff line change
@@ -1,13 +1,39 @@
\makeatletter
\newbox\testbox
\newwrite\boxout


\begingroup % within the scope of this groups each line needs to end in % !
\catcode`\^^M\active %
\gdef\extblx@test@showfile#1{%
\IfFileExists{#1}%
{\begingroup %
\catcode`\^^M\active %
\edef^^M{^^J}%
\everyeof{\noexpand}%
\obeyspaces %
\@sanitize %
\message{\@@input #1 }%
\endgroup }%
{\message{Not found}}%
}%
\endgroup

\newcommand*{\extblx@test@boxfilename}{extblxbox.txt}

\newcommand*{\extblxtestbox}[1]{%
\OMIT
\immediate\openout\boxout{\extblx@test@boxfilename}%
\showstream\boxout
\TIMO
\setbox\testbox=\hbox{%
#1}%
\showbox\testbox
\OMIT
\immediate\closeout\boxout
#1%
\TIMO
\extblx@test@showfile{\extblx@test@boxfilename}
}

\apptocmd\blx@getdata{%
Expand Down

0 comments on commit 8f9d5a8

Please sign in to comment.