aboutsummaryrefslogtreecommitdiff
path: root/testsuite
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite')
-rw-r--r--testsuite/README3
-rw-r--r--testsuite/tar/tar-extracts-all-subdirs12
2 files changed, 15 insertions, 0 deletions
diff --git a/testsuite/README b/testsuite/README
index 40439bfe8..377f20ef8 100644
--- a/testsuite/README
+++ b/testsuite/README
@@ -1,3 +1,6 @@
1Update: doesn't work as described. Try "make check" from parent dir...
2* * *
3
1To run the test suite, change to this directory and run "./runtest". It will 4To run the test suite, change to this directory and run "./runtest". It will
2run all of the test cases, and list those with unexpected outcomes. Adding the 5run all of the test cases, and list those with unexpected outcomes. Adding the
3-v option will cause it to show expected outcomes as well. To only run the test 6-v option will cause it to show expected outcomes as well. To only run the test
diff --git a/testsuite/tar/tar-extracts-all-subdirs b/testsuite/tar/tar-extracts-all-subdirs
new file mode 100644
index 000000000..886c37ce9
--- /dev/null
+++ b/testsuite/tar/tar-extracts-all-subdirs
@@ -0,0 +1,12 @@
1# FEATURE: CONFIG_FEATURE_TAR_CREATE
2mkdir -p foo/{1,2,3}
3mkdir -p foo/1/{10,11}
4mkdir -p foo/1/10/{100,101,102}
5tar cf foo.tar -C foo .
6rm -rf foo/*
7busybox tar xf foo.tar -C foo ./1/10
8find foo | sort >logfile.bb
9rm -rf foo/*
10tar xf foo.tar -C foo ./1/10
11find foo | sort >logfile.gnu
12cmp logfile.gnu logfile.bb