blob: b4f24bd4c6ccdfe57f14c597ca5bc6d6912c9606 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#! /bin/sh
# Copyright (C) 2010 Peter Breitenlohner <tex-live@tug.org>
# You may freely use, modify and/or distribute this file.
exit 77
test -d tests || mkdir -p tests
cp $srcdir/../web2c/tests/exampl.aux tests/xexampl.aux
TEXMFCNF=$srcdir/../kpathsea \
BSTINPUTS=$srcdir/../web2c/tests \
BIBINPUTS=$srcdir/../web2c/tests \
./bibtexu tests/xexampl || test $? = 1 || exit 1
|