summaryrefslogtreecommitdiff
path: root/tests/cp/parent-perm
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2008-01-07 11:57:27 +0100
committerJim Meyering <meyering@redhat.com>2008-01-07 12:07:07 +0100
commitdb58094e11adb527c31b3510d3430123a4048686 (patch)
tree6119aa50e6c8287b78e1f4bbbb30a9ad385c0a24 /tests/cp/parent-perm
parent9b76bc2b54180caa80afed4d88377ddd0f0ab6de (diff)
downloadcoreutils-db58094e11adb527c31b3510d3430123a4048686.tar.xz
cp: add a test for today's bug fix.
* tests/cp/parent-perm: New script. Test today's change. Based on reproducer from Jan Blunck. * tests/cp/Makefile.am (TESTS): Add parent-perm.
Diffstat (limited to 'tests/cp/parent-perm')
-rwxr-xr-xtests/cp/parent-perm38
1 files changed, 38 insertions, 0 deletions
diff --git a/tests/cp/parent-perm b/tests/cp/parent-perm
new file mode 100755
index 000000000..1c7a222bb
--- /dev/null
+++ b/tests/cp/parent-perm
@@ -0,0 +1,38 @@
+#!/bin/sh
+# Ensure that cp --parents works properly with a preexisting dest. directory
+
+# Copyright (C) 2008 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/>.
+
+if test "$VERBOSE" = yes; then
+ set -x
+ cp --version
+fi
+
+. $srcdir/../envvar-check
+. $srcdir/../test-lib.sh
+
+mkdir -p a/b/c a/b/d e || framework_failure
+touch a/b/c/foo a/b/d/foo || framework_failure
+cp -p --parent a/b/c/foo e || framework_failure
+
+fail=0
+cp -p --parent a/b/d/foo e || fail=1
+
+# Ensure that permissions on just-created directory, e/a/,
+# are the same as those on original, a/.
+test $(stat --printf %A a) = $(stat --printf %A e/a) || fail=1
+
+(exit $fail); exit $fail