summaryrefslogtreecommitdiff
path: root/tests/ln/hard-backup
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ln/hard-backup')
-rwxr-xr-xtests/ln/hard-backup32
1 files changed, 0 insertions, 32 deletions
diff --git a/tests/ln/hard-backup b/tests/ln/hard-backup
deleted file mode 100755
index bc38bbe5d..000000000
--- a/tests/ln/hard-backup
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/bin/sh
-# Ensure that 'ln --backup F F' gives a proper diagnostic.
-
-# Copyright (C) 2006-2012 Free Software Foundation, Inc.
-
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-
-# You should have received a copy of the GNU General Public License
-# along with this program. If not, see <http://www.gnu.org/licenses/>.
-
-. "${srcdir=.}/init.sh"; path_prepend_ ../src
-print_ver_ ln
-
-touch f || framework_failure_
-
-
-ln --backup f f 2> out && fail=1
-cat <<\EOF > exp || fail=1
-ln: 'f' and 'f' are the same file
-EOF
-
-compare exp out || fail=1
-
-Exit $fail