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