blob: 8ec3e093bcfa8be3c7ba2eebdae38427563bcd89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#! /bin/sh -vx
# $Id$
# Copyright 2017 Karl Berry <tex-live@tug.org>
# Copyright 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
|