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