You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-commits@hadoop.apache.org by vi...@apache.org on 2014/11/09 17:54:15 UTC

[13/30] hadoop git commit: HADOOP-11280. TestWinUtils#testChmod fails after removal of NO_PROPAGATE_INHERIT_ACE. Contributed by Chris Nauroth.

HADOOP-11280. TestWinUtils#testChmod fails after removal of NO_PROPAGATE_INHERIT_ACE. Contributed by Chris Nauroth.


Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo
Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/42bbe379
Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/42bbe379
Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/42bbe379

Branch: refs/heads/HDFS-EC
Commit: 42bbe3794e4a8edef020e08111dbd7f1058938e2
Parents: d026f36
Author: cnauroth <cn...@apache.org>
Authored: Fri Nov 7 00:02:17 2014 -0800
Committer: cnauroth <cn...@apache.org>
Committed: Fri Nov 7 00:02:17 2014 -0800

----------------------------------------------------------------------
 hadoop-common-project/hadoop-common/CHANGES.txt                   | 3 +++
 .../src/test/java/org/apache/hadoop/util/TestWinUtils.java        | 2 +-
 2 files changed, 4 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hadoop/blob/42bbe379/hadoop-common-project/hadoop-common/CHANGES.txt
----------------------------------------------------------------------
diff --git a/hadoop-common-project/hadoop-common/CHANGES.txt b/hadoop-common-project/hadoop-common/CHANGES.txt
index 8587f12..0192560 100644
--- a/hadoop-common-project/hadoop-common/CHANGES.txt
+++ b/hadoop-common-project/hadoop-common/CHANGES.txt
@@ -1083,6 +1083,9 @@ Release 2.6.0 - UNRELEASED
     HADOOP-11265. Credential and Key Shell Commands not available on Windows.
     (Larry McCay via cnauroth)
 
+    HADOOP-11280. TestWinUtils#testChmod fails after removal of
+    NO_PROPAGATE_INHERIT_ACE. (cnauroth)
+
 Release 2.5.2 - UNRELEASED
 
   INCOMPATIBLE CHANGES

http://git-wip-us.apache.org/repos/asf/hadoop/blob/42bbe379/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/util/TestWinUtils.java
----------------------------------------------------------------------
diff --git a/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/util/TestWinUtils.java b/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/util/TestWinUtils.java
index 953039d..2d4e442 100644
--- a/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/util/TestWinUtils.java
+++ b/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/util/TestWinUtils.java
@@ -371,7 +371,7 @@ public class TestWinUtils {
     testChmodInternalR("a+rX", "rw-r--r--", "rwxr-xr-x");
 
     // Test a new file created in a chmod'ed directory has expected permission
-    testNewFileChmodInternal("-rwx------");
+    testNewFileChmodInternal("-rwxr-xr-x");
   }
 
   private void chown(String userGroup, File file) throws IOException {