Add two fundamental tests for copying directories

This commit is contained in:
Glenn L McGrath 2004-04-18 13:35:56 +00:00
parent 7ff33f1b42
commit c6a99b993d
2 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,4 @@
mkdir bar
touch bar/baz
busybox cp -R bar foo
test -f foo/baz

View File

@ -0,0 +1,5 @@
mkdir bar
touch bar/baz
mkdir foo
busybox cp -R bar foo
test -f foo/bar/baz