blob: 7673ba1ef56b0cdb43a4a8443c95a75da1a931d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#! /bin/sh
# Copyright (C) 2010 Peter Breitenlohner <tex-live@tug.org>
# You may freely use, modify and/or distribute this file.
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 \
./bibtex8 -7 tests/xexampl || test $? = 1 || exit 1
|