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