~ubuntu-branches/ubuntu/wily/luatex/wily

« back to all changes in this revision

Viewing changes to source/libs/zlib/zlib.test

  • Committer: Bazaar Package Importer
  • Author(s): Norbert Preining
  • Date: 2010-04-29 00:47:19 UTC
  • mfrom: (1.1.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20100429004719-o42etkqe90n97b9e
Tags: 0.60.1-1
* new upstream release, adapt build-script patch
* disable patch: upstream-epstopdf_cc_no_xpdf_patching, included upstream
* disable patch: libpoppler-0.12, not needed anymore

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /bin/sh
 
2
 
 
3
# Copyright (C) 2009 Peter Breitenlohner <tex-live@tug.org>
 
4
# You may freely use, modify and/or distribute this file.
 
5
 
 
6
echo hello world | ./minigzip | ./minigzip -d || { \
 
7
  echo '                *** minigzip test FAILED ***' 
 
8
  exit 1
 
9
}
 
10
 
 
11
if ./example; then
 
12
  echo '                *** zlib test OK ***'
 
13
else
 
14
  echo '                *** zlib test FAILED ***'
 
15
  exit 1
 
16
fi
 
17