mirror of
https://github.com/sheumann/hush.git
synced 2024-11-05 06:07:00 +00:00
0ef64bdb40
This change retains "or later" state! No licensing _changes_ here, only form is adjusted (article, space between "GPL" and "v2" and so on). Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
39 lines
792 B
Bash
Executable File
39 lines
792 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Tests for unzip.
|
|
# Copyright 2006 Rob Landley <rob@landley.net>
|
|
# Copyright 2006 Glenn McGrath
|
|
# Licensed under GPLv2, see file LICENSE in this source tree.
|
|
|
|
. ./testing.sh
|
|
|
|
# testing "test name" "options" "expected result" "file input" "stdin"
|
|
# file input will be file called "input"
|
|
# test can create a file "actual" instead of writing to stdout
|
|
|
|
# Create a scratch directory
|
|
|
|
mkdir temp
|
|
cd temp
|
|
|
|
# Create test file to work with.
|
|
|
|
mkdir foo
|
|
touch foo/bar
|
|
zip foo.zip foo foo/bar > /dev/null
|
|
rm -f foo/bar
|
|
rmdir foo
|
|
|
|
# Test that unzipping just foo doesn't create bar.
|
|
testing "unzip (subdir only)" "unzip -q foo.zip foo/ && test -d foo && test ! -f foo/bar && echo yes" "yes\n" "" ""
|
|
|
|
rmdir foo
|
|
rm foo.zip
|
|
|
|
# Clean up scratch directory.
|
|
|
|
cd ..
|
|
rm -rf temp
|
|
|
|
exit $FAILCOUNT
|