#! /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 rc=0 TEXMFCNF=$srcdir/../kpathsea BSTINPUTS=$srcdir/tests BIBINPUTS=$srcdir/tests export TEXMFCNF BSTINPUTS BIBINPUTS rm -f tests/xsort[123].bbl tests/xcase[123].bbl for i in 1 2 3; do ## test for sorting and change.case$ cp $srcdir/tests/sort.aux tests/xsort$i.aux ./bibtex8 --csfile sort$i.csf tests/xsort$i || rc=1 diff $srcdir/tests/sort$i.bbl tests/xsort$i.bbl || rc=2 ## test for change.case$ cp $srcdir/tests/casea.aux tests/xcase$i.aux ./bibtex8 --csfile sort$i.csf tests/xcase$i || rc=3 diff $srcdir/tests/casea.bbl tests/xcase$i.bbl || rc=4 done exit $rc