blob: 80c1f509499b416516e285a8dd30db879ba0e285 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#! /bin/sh
#
# Copyright (C) 2015 Peter Breitenlohner <tex-live@tug.org>
# You may freely use, modify and/or distribute this file.
TEXMFCNF=$srcdir/../kpathsea
TEXINPUTS=.
export TEXMFCNF TEXINPUTS
FILE=pdfprimitive-eptex
# get same filename in log
rm -f $FILE.*
$LN_S $srcdir/eptexdir/tests/pdfprimitive-test.tex $FILE.tex
./eptex -ini -etex $FILE && exit 1
sed 1d $FILE.log >$FILE.out
diff $srcdir/eptexdir/tests/$FILE.log $FILE.out || exit 1
|