summaryrefslogtreecommitdiff
path: root/Build/source/texk/bibtex-x/tests/sort.test
blob: a374eb18e141b2eda0e2909923bd60454df4b3fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#! /bin/sh

# Copyright (C) 2010 Peter Breitenlohner <tex-live@tug.org>
# You may freely use, modify and/or distribute this file.

# Using test data from Philipp Lehman <lehman@gmx.net>

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