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