-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
git-svn-id: svn://tug.org/texlive/trunk/Build/source@72628 c570f23f-e606-0410-a88d-b1316a301751
- Loading branch information
Showing
4 changed files
with
54 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
2024-10-23 Martin Ruckert <[email protected]> | ||
|
||
Adding a simple hello world test. | ||
|
||
2024-09-07 Karl Berry <[email protected]> | ||
|
||
* am/texprof.am (texprofile_c): depend on texprofile-tangle, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
#!/bin/sh -vx | ||
# $Id: hello.test 61117 2021-11-22 16:45:58Z mruckert $ | ||
# Public domain. Originally written by Martin Ruckert | ||
# Basic check that hello.tex can be profiled | ||
|
||
LC_ALL=C; export LC_ALL; LANGUAGE=C; export LANGUAGE | ||
|
||
TEXMFCNF=$srcdir/../kpathsea; export TEXMFCNF | ||
TEXINPUTS=$srcdir/texprofdir/tests; export TEXINPUTS | ||
TFMFONTS=$srcdir/tests; export TFMFONTS | ||
T1FONTS=$srcdir/tests; export T1FONTS | ||
|
||
# separate from texprofdir/tests because automake writes hello.log | ||
# in texprofdir/tests (so it already exists). | ||
OUTDIR=./texprofdir/tests/outdir; mkdir $OUTDIR | ||
|
||
#./texprof --help >/dev/null || exit $? | ||
./texprof --version || exit $? | ||
./texprofile --version || exit $? | ||
|
||
./texprof -prof -ini -interaction=nonstopmode -output-directory=$OUTDIR hello.tex \ | ||
|| exit $? | ||
|
||
./texprofile hello.tprof || exit $? | ||
|
||
exit 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
% $Id: hello.tex 61083 2021-11-17 02:55:42Z karl $ | ||
% Public domain. Test file for hello,world text. | ||
% Originally written 2021 Martin Ruckert | ||
|
||
\catcode`\{=1 \catcode`\}=2 % can run under -ini | ||
\font\tenrm=cmr10 % | ||
\tenrm Hello world! | ||
\vfill | ||
|
||
\end | ||
|