blob: d1e64d7d6ad7448e50824b06d61e6434c82a37fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/sh
# Copyright 2013 Peter Breitenlohner <tex-live@tug.org>
# You may freely use, modify and/or distribute this file.
TEXMFCNF=$srcdir/tests/cnfnewline; export TEXMFCNF
val=`./kpsewhich --debug=-1 --var-value=lastvar`
test x"$val" = xlastval || exit 1
# verbose for testing.
#if test x"$val" = xlastval; then
# echo "$0: ok"
#else
# echo "$0: bad, got \`$val'"
# exit 1
#fi
|