]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
New file/test, for the fix on 2002-10-08.
authorJim Meyering <jim@meyering.net>
Thu, 10 Oct 2002 08:31:29 +0000 (08:31 +0000)
committerJim Meyering <jim@meyering.net>
Thu, 10 Oct 2002 08:31:29 +0000 (08:31 +0000)
tests/ln/target-1 [new file with mode: 0755]

diff --git a/tests/ln/target-1 b/tests/ln/target-1
new file mode 100755 (executable)
index 0000000..09295bc
--- /dev/null
@@ -0,0 +1,29 @@
+#!/bin/sh
+# Before coreutils-4.5.3, --target-dir didn't work with one file.
+# Based on a test case from Dmitry V. Levin.
+
+if test "$VERBOSE" = yes; then
+  set -x
+  ln --version
+fi
+
+pwd=`pwd`
+t0=`echo "$0"|sed 's,.*/,,'`.tmp; tmp=$t0/$$
+trap 'status=$?; cd $pwd; chmod -R u+rwx $t0; rm -rf $t0 && exit $status' 0
+trap '(exit $?); exit $?' 1 2 13 15
+
+framework_failure=0
+mkdir -p $tmp || framework_failure=1
+cd $tmp || framework_failure=1
+mkdir d || framework_failure=1
+
+if test $framework_failure = 1; then
+  echo "$0: failure in testing framework" 1>&2
+  (exit 1); exit 1
+fi
+
+fail=0
+
+ln -s --target-dir=d ../f || fail=1
+
+(exit $fail); exit $fail