blob: ba35a21c08e8858c11995489319667c0b697a2c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#! /bin/sh
# Copyright (C) 2011 Peter Breitenlohner <tex-live@tug.org>
# You may freely use, modify and/or distribute this file.
./cef5conv <$srcdir/tests/cef5conv.tex >cef5conv.cjk \
&& diff cef5conv.cjk $srcdir/tests/cef5conv.cjk \
|| exit 1
./bg5conv <$srcdir/tests/cef5conv.tex | ./cefconv \
| sed 's/cefconv.*bg5conv/cef5conv/' >cef5conv.cjk \
&& diff cef5conv.cjk $srcdir/tests/cef5conv.cjk \
|| exit 1
./cefconv <$srcdir/tests/cef5conv.tex | ./bg5conv \
| sed 's/CJKpreproc.*CNSpreproc/CNSpreproc/;s/cefconv/cef5conv/' >cef5conv.cjk \
&& diff cef5conv.cjk $srcdir/tests/cef5conv.cjk \
|| exit 1
|