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.test24
1 files changed, 24 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..a374eb18e14
--- /dev/null
+++ b/Build/source/texk/bibtex-x/tests/sort.test
@@ -0,0 +1,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
+