diff options
Diffstat (limited to 'testsuite/mv/mv-moves-symlinks')
-rw-r--r-- | testsuite/mv/mv-moves-symlinks | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/testsuite/mv/mv-moves-symlinks b/testsuite/mv/mv-moves-symlinks new file mode 100644 index 000000000..c413af07c --- /dev/null +++ b/testsuite/mv/mv-moves-symlinks @@ -0,0 +1,6 @@ +touch foo +ln -s foo bar +busybox mv bar baz +test -f foo +test ! -e bar +test -L baz |