cp: add a test for today's bug fix.
authorJim Meyering <meyering@redhat.com>
Mon, 7 Jan 2008 10:57:27 +0000 (11:57 +0100)
committerJim Meyering <meyering@redhat.com>
Mon, 7 Jan 2008 11:07:07 +0000 (12:07 +0100)
* tests/cp/parent-perm: New script.  Test today's change.
Based on reproducer from Jan Blunck.
* tests/cp/Makefile.am (TESTS): Add parent-perm.

ChangeLog
tests/cp/Makefile.am
tests/cp/parent-perm [new file with mode: 0755]

index 85dc1c1db3c43049d84a39b2af3f4c3b746b1f6b..29ae607aa3be216dae2d2143f5af566e2b0759dc 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2008-01-07  Jim Meyering  <meyering@redhat.com>
+
+       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.
+
 2008-01-06  Jim Meyering  <meyering@redhat.com>
 
        touch: add a test for today's change.
index 4af269c48f00c08f9e38ec99a344f941fb5dd886..e2f96c9e34c325a9bc325c7f7d86a02d861d8a97 100644 (file)
@@ -1,6 +1,6 @@
 # Make coreutils tests for cp.                         -*-Makefile-*-
 
-# Copyright (C) 1997-2001, 2003, 2005-2007 Free Software Foundation, Inc.
+# Copyright (C) 1997-2001, 2003, 2005-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
@@ -16,6 +16,7 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
 TESTS = \
+  parent-perm \
   abuse \
   proc-zero-len \
   thru-dangling \
diff --git a/tests/cp/parent-perm b/tests/cp/parent-perm
new file mode 100755 (executable)
index 0000000..1c7a222
--- /dev/null
@@ -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