blob: 4d08d6b59585067cb939befbd4f93537d3ce396a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#! /bin/sh -vx
# $Id$
# Copyright 2017 Karl Berry <tex-live@tug.org>
# Copyright 2009 Peter Breitenlohner <tex-live@tug.org>
# You may freely use, modify and/or distribute this file.
./dt2dv $srcdir/edited.txt testfile.dvi || exit 1
./dv2dt testfile.dvi testfile.dtl || exit 1
./dt2dv testfile.dtl testfile.dvx || exit 1
./dv2dt testfile.dvx testfile.dtx || exit 1
diff testfile.dtl testfile.dtx || exit 1
|