blob: 21b1d5ed0e92f82361c90804d38f82a23f10dbbe (
plain)
1
2
3
4
5
6
7
8
9
10
|
#! /bin/sh
# Copyright (C) 2009, 2010 Peter Breitenlohner <tex-live@tug.org>
# You may freely use, modify and/or distribute this file.
./lacheck $srcdir/$LACHECK_TREE/test.tex | \
sed -e "s!$srcdir/$LACHECK_TREE/test.tex!./test.tex!g" >test.out || exit 1
diff $srcdir/$LACHECK_TREE/test.old test.out || exit 1
|