summaryrefslogtreecommitdiff
path: root/Build/source/libs/pplib/pplib.test
blob: 76d957f8bcebd8599642fed983981c50042e8853 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#! /bin/sh -vx
# $Id: pplib.test 45809 2017-11-15 00:36:56Z karl $
# Copyright 2017 Karl Berry <tex-live@tug.org>
# Copyright 2010 Peter Breitenlohner <tex-live@tug.org>
# You may freely use, modify and/or distribute this file.

# pre-generated test results in the repository are stored in LF
# but the output might be written in CRLF on some platform.
# if 'diff --strip-trailing-cr' is available, exploit it.
# (useful for tests on win32 binaries run on MSYS shell)
DIFF="diff"
$DIFF --strip-trailing-cr $0 $0 \
  && DIFF="diff --strip-trailing-cr" || echo

#srcdir='../../../source/libs/pplib'
#PPLIB_TREE=pplib-src

rm -rf test
mkdir test

cp $srcdir/$PPLIB_TREE/test/luaimage.pdf test

(cd test && ../pptest1 luaimage.pdf | sed -e 's/memused.*$//;s/memwaste.*$//;' >out1 || exit 1) \
&& (cd test && ../pptest2 luaimage.pdf >out2 || exit 2) \
&& (cd test && ../pptest3 luaimage.pdf >out3 || exit 3) || exit 4


diff $srcdir/$PPLIB_TREE/test/out1 test/out1 || exit 5
$DIFF $srcdir/$PPLIB_TREE/test/out2 test/out2 || exit 6
diff $srcdir/$PPLIB_TREE/test/luaimage.pdf.out test/luaimage.pdf.out || exit 7
$DIFF $srcdir/$PPLIB_TREE/test/out3 test/out3 || exit 8