From b2e267f15380ff6c48b0ee5c7cd9dd7f279b38c7 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Mon, 5 Apr 2004 18:46:24 +0000 Subject: Some test additions --- testsuite/cp/cp-d-files-to-dir | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 testsuite/cp/cp-d-files-to-dir (limited to 'testsuite/cp/cp-d-files-to-dir') diff --git a/testsuite/cp/cp-d-files-to-dir b/testsuite/cp/cp-d-files-to-dir new file mode 100644 index 0000000..9407ead --- /dev/null +++ b/testsuite/cp/cp-d-files-to-dir @@ -0,0 +1,11 @@ +echo file number one > file1 +echo file number two > file2 +touch file3 +ln -s file2 link1 +mkdir there +busybox cp -d file1 file2 file3 link1 there +test -f there/file1 +test -f there/file2 +test ! -s there/file3 +test -l there/link1 +test `readlink there/link1` = "file2" -- cgit v1.1