6b140ea5a9
* testsuite/runtest (run_applet_testcase): Likewise. * testsuite/cp/cp-preserves-hard-links: Likewise. * testsuite/grep/egrep-supports-extended-regexps: Likewise. * testsuite/grep/grep-is-also-egrep: Likewise. * testsuite/tar/tar-archives-multiple-files: Likewise. * testsuite/tar/tar-handles-empty-include-and-non-empty-exclude-list: Likewise. * testsuite/tar/tar-handles-exclude-and-extract-lists: Likewise. * testsuite/tar/tar-handles-nested-exclude: Likewise.
9 lines
194 B
Plaintext
9 lines
194 B
Plaintext
# FEATURE: CONFIG_FEATURE_TAR_EXCLUDE
|
|
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
|