blob: 44e125368333ed281bd033d5d33cee0b9bf0435e (
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 ewprob.*
cp $srcdir/tests/wprob.tex ./ewprob.tex
TEXMFCNF=$srcdir/../kpathsea \
./etex --ini --etex --file-line-error --interaction=nonstopmode ewprob.tex
grep '^\./ewprob\.tex:12: Could not open file NoSuchFile\.eps\.$' \
ewprob.log || exit 1
|