summaryrefslogtreecommitdiff
path: root/Build/source/texk/bibtex-x/tests/sort.test
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/texk/bibtex-x/tests/sort.test')
-rwxr-xr-xBuild/source/texk/bibtex-x/tests/sort.test25
1 files changed, 25 insertions, 0 deletions
diff --git a/Build/source/texk/bibtex-x/tests/sort.test b/Build/source/texk/bibtex-x/tests/sort.test
new file mode 100755
index 00000000000..ed4ffe6ffad
--- /dev/null
+++ b/Build/source/texk/bibtex-x/tests/sort.test
@@ -0,0 +1,25 @@
+#! /bin/sh -vx
+# $Id$
+# Copyright 2017 Karl Berry <tex-live@tug.org>
+# Copyright 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
+