.
authorJim Meyering <jim@meyering.net>
Sat, 14 Mar 1998 10:37:29 +0000 (10:37 +0000)
committerJim Meyering <jim@meyering.net>
Sat, 14 Mar 1998 10:37:29 +0000 (10:37 +0000)
tests/mv/into-self [new file with mode: 0755]

diff --git a/tests/mv/into-self b/tests/mv/into-self
new file mode 100755 (executable)
index 0000000..c7b29b6
--- /dev/null
@@ -0,0 +1,31 @@
+#! /bin/sh
+
+: ${MV=mv}
+: ${MKDIR=mkdir}
+: ${RM=rm}
+: ${TOUCH=touch}
+
+dir=into-self-dir
+file=into-self-file
+
+test_failure=0
+
+$RM -f $dir $file || test_failure=1
+$MKDIR -p $dir/a/b || test_failure=1
+$TOUCH $file || test_failure=1
+
+if test $test_failure = 1; then
+  echo 'failure in testing framework'
+  exit 1
+fi
+
+fail=0
+$MV $dir $file $dir || fail=1
+# Make sure the file is gone.
+test -f $file && fail=1
+# Make sure the directory is *not* gone.
+test -d $dir/$dir/a/b || fail=1
+# Make sure the file has been moved to the right place.
+test -f $dir/$file || fail=1
+
+exit $fail