blob: 1b67f5243c3dd5b78737b0287a229bee85b11dbb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#! /bin/sh -vx
# Copyright 2017 Karl Berry <tex-live@tug.org>
# Copyright 2012 Peter Breitenlohner <tex-live@tug.org>
# You may freely use, modify and/or distribute this file.
rm -f mozart*
cp $srcdir/tests/mozart.mtx .
set -x
./prepmx mozart \
&& diff mozart.pmx $srcdir/tests/mozart.pmx \
|| exit 1
exit 0
|