blob: 0e07e3038d36e2457e23c1f551355a5384a470f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#! /bin/sh
# Copyright (C) 2011-2013 Peter Breitenlohner <tex-live@tug.org>
# You may freely use, modify and/or distribute this file.
rm -rf pwprob.*
cp $srcdir/tests/wprob.tex ./pwprob.tex
TEXMFCNF=$srcdir/../kpathsea \
./pdftex --ini --etex --file-line-error --interaction=nonstopmode pwprob.tex
grep '^\./pwprob\.tex:12: Could not open file NoSuchFile\.eps\.$' \
pwprob.log || exit 1
|