blob: f39d35645b77d0d287477b20dd2288be0543c377 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#! /bin/sh
# Copyright (C) 2010 Peter Breitenlohner <tex-live@tug.org>
# You may freely use, modify and/or distribute this file.
rm -rf test
mkdir test
cp $srcdir/$ZZIPLIB_TREE/test/test.zip test
(cd test && ../unzzip test.zip || exit 1) || exit 1
diff $srcdir/$ZZIPLIB_TREE/README test/README || exit 1
|