Some test additions
[oweals/busybox.git] / testsuite / cp / cp-a-preserves-links
diff --git a/testsuite/cp/cp-a-preserves-links b/testsuite/cp/cp-a-preserves-links
new file mode 100644 (file)
index 0000000..aae8313
--- /dev/null
@@ -0,0 +1,5 @@
+touch foo
+ln -s foo bar
+busybox cp -a bar baz
+test -L baz
+test `readlink baz` = "foo"