blob: 15997c3f4eb0f8bc32bb05ac7dfe234fdecc6d78 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#! /bin/sh -vx
# $Id: test-def.test 51589 2019-07-09 03:36:40Z kakuto $
# Copyright 2019 Karl Berry <tex-live@tug.org>
# You may freely use, modify and/or distribute this file.
LC_ALL=C; export LC_ALL; LANGUAGE=C; export LANGUAGE
testname=test-def
input=$testname.tex
./lacheck $srcdir/$input \
| sed -e "s!$srcdir/$input!./$input!g" >$testname.out || exit 1
diff $srcdir/$testname.xout $testname.out || exit 1
|