#! /bin/sh -vx # $Id$ # Copyright 2017 Karl Berry # Copyright 2010 Peter Breitenlohner # You may freely use, modify and/or distribute this file. # Using test data from Philipp Lehman test -d tests || mkdir -p tests cp $srcdir/tests/sort.aux tests/xsort.aux for i in 1 2 3; do rm -f xsort.bbl TEXMFCNF=$srcdir/../kpathsea \ BSTINPUTS=$srcdir/tests \ BIBINPUTS=$srcdir/tests \ ./bibtex8 --csfile sort$i.csf tests/xsort || exit 1 diff $srcdir/tests/sort$i.bbl tests/xsort.bbl || exit 1 done