HDFS-11272. Refine the assert messages in TestFSDirAttrOp. Contributed by Jimmy Xiang.
Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/ea547529 Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/ea547529 Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/ea547529 Branch: refs/heads/YARN-5085 Commit: ea547529cb17c931a756ebffa6942f71f761ad13 Parents: 8f218ea Author: Akira Ajisaka <[email protected]> Authored: Mon Dec 26 17:15:45 2016 +0900 Committer: Akira Ajisaka <[email protected]> Committed: Mon Dec 26 17:15:45 2016 +0900 ---------------------------------------------------------------------- .../hadoop/hdfs/server/namenode/TestFSDirAttrOp.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/ea547529/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/server/namenode/TestFSDirAttrOp.java ---------------------------------------------------------------------- diff --git a/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/server/namenode/TestFSDirAttrOp.java b/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/server/namenode/TestFSDirAttrOp.java index 8cd68a1..44cf57a 100644 --- a/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/server/namenode/TestFSDirAttrOp.java +++ b/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/server/namenode/TestFSDirAttrOp.java @@ -52,25 +52,25 @@ public class TestFSDirAttrOp { @Test public void testUnprotectedSetTimes() throws Exception { // atime < access time + precision - assertFalse("SetTimes should not update access time" + assertFalse("SetTimes should not update access time " + "because it's within the last precision interval", unprotectedSetTimes(100, 0, 1000, -1, false)); // atime = access time + precision - assertFalse("SetTimes should not update access time" + assertFalse("SetTimes should not update access time " + "because it's within the last precision interval", unprotectedSetTimes(1000, 0, 1000, -1, false)); // atime > access time + precision - assertTrue("SetTimes should store access time", + assertTrue("SetTimes should update access time", unprotectedSetTimes(1011, 10, 1000, -1, false)); // atime < access time + precision, but force is set - assertTrue("SetTimes should store access time", + assertTrue("SetTimes should update access time", unprotectedSetTimes(100, 0, 1000, -1, true)); // atime < access time + precision, but mtime is set - assertTrue("SetTimes should store access time", + assertTrue("SetTimes should update access time", unprotectedSetTimes(100, 0, 1000, 1, false)); } } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
