diff options
Diffstat (limited to 'testsuite/cp/cp-a-preserves-links')
-rw-r--r-- | testsuite/cp/cp-a-preserves-links | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/testsuite/cp/cp-a-preserves-links b/testsuite/cp/cp-a-preserves-links new file mode 100644 index 000000000..aae8313c6 --- /dev/null +++ b/testsuite/cp/cp-a-preserves-links @@ -0,0 +1,5 @@ +touch foo +ln -s foo bar +busybox cp -a bar baz +test -L baz +test `readlink baz` = "foo" |