blob: 96c165abf4fb6af66ec7c7c06a9e79d1f652a09d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#! /bin/sh
# Copyright 2018 Karl Berry <tex-live@tug.org>
# Copyright 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
./luatry -e "error('test')" 2>error.tmp && exit 1
sed -e 's/lt-luatry/luatry/;s,^.*/luatry\(\.exe\)*,./luatry,' error.tmp >error.out
diff $srcdir/error.exp error.out || exit 2
|