blob: 3a83b3e127093d75b10329f623a44f020a34cba4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#! /bin/sh -vx
# $Id: lacheck.test 48633 2018-09-09 17:56:55Z karl $
# Copyright 2017-2018 Karl Berry <tex-live@tug.org>
# Copyright 2009-2014 Peter Breitenlohner <tex-live@tug.org>
# You may freely use, modify and/or distribute this file.
LC_ALL=C; export LC_ALL; LANGUAGE=C; export LANGUAGE
./lacheck $srcdir/test.tex | \
sed -e "s!$srcdir/test.tex!./test.tex!g" >test.out || exit 1
diff $srcdir/test.old test.out || exit 1
|