blob: 2e7c2ad5e4e185d7c26aa4b9573dada52fc2db89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#! /bin/sh
# Copyright (C) 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
|