aboutsummaryrefslogtreecommitdiff
path: root/testsuite/cp/cp-d-files-to-dir
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2004-04-05 18:46:24 +0000
committerEric Andersen <andersen@codepoet.org>2004-04-05 18:46:24 +0000
commitb2e267f15380ff6c48b0ee5c7cd9dd7f279b38c7 (patch)
treec5060041fff8dfc48b75dd0b3b64b1bd697d309d /testsuite/cp/cp-d-files-to-dir
parent18751cd4a2f8fcac059bce9b09daef14e209eea1 (diff)
downloadbusybox-w32-b2e267f15380ff6c48b0ee5c7cd9dd7f279b38c7.tar.gz
busybox-w32-b2e267f15380ff6c48b0ee5c7cd9dd7f279b38c7.tar.bz2
busybox-w32-b2e267f15380ff6c48b0ee5c7cd9dd7f279b38c7.zip
Some test additions
Diffstat (limited to 'testsuite/cp/cp-d-files-to-dir')
-rw-r--r--testsuite/cp/cp-d-files-to-dir11
1 files changed, 11 insertions, 0 deletions
diff --git a/testsuite/cp/cp-d-files-to-dir b/testsuite/cp/cp-d-files-to-dir
new file mode 100644
index 000000000..9407ead00
--- /dev/null
+++ b/testsuite/cp/cp-d-files-to-dir
@@ -0,0 +1,11 @@
1echo file number one > file1
2echo file number two > file2
3touch file3
4ln -s file2 link1
5mkdir there
6busybox cp -d file1 file2 file3 link1 there
7test -f there/file1
8test -f there/file2
9test ! -s there/file3
10test -l there/link1
11test `readlink there/link1` = "file2"