blob: 614462104c84910315cb6f157a5e52f6f6b3ea60 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#! /bin/sh -vx
# $Id$
# 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
|