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