ce91c8ac2b
options, add some conditions to the tar tests in testsuite.
10 lines
228 B
Plaintext
10 lines
228 B
Plaintext
# FEATURE: CONFIG_FEATURE_TAR_FROM
|
|
# FEATURE: CONFIG_FEATURE_TAR_CREATE
|
|
mkdir foo
|
|
touch foo/bar
|
|
tar cf foo.tar foo
|
|
rm -rf foo
|
|
echo foo/bar >foobar.exclude
|
|
busybox tar xf foo.tar foo -X foobar.exclude
|
|
test -d foo -a ! -f foo/bar
|