Author: szetszwo
Date: Wed Mar 7 19:44:47 2012
New Revision: 1298066
URL: http://svn.apache.org/viewvc?rev=1298066&view=rev
Log:
HDFS-2038. Update TestHDFSCLI to handle relative paths with globs. Contributed
by Kihwal Lee
Modified:
hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt
hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/cli/TestHDFSCLI.java
hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs/src/test/resources/testHDFSConf.xml
Modified: hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt
URL:
http://svn.apache.org/viewvc/hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt?rev=1298066&r1=1298065&r2=1298066&view=diff
==============================================================================
--- hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt (original)
+++ hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt Wed Mar 7
19:44:47 2012
@@ -661,6 +661,9 @@ Release 0.23.2 - UNRELEASED
HDFS-3032. Change DFSClient.renewLease() so that it only retries up to the
lease soft-limit. (Kihwal Lee via szetszwo)
+ HDFS-2038. Update TestHDFSCLI to handle relative paths with globs.
+ (Kihwal Lee via szetszwo)
+
Release 0.23.1 - 2012-02-17
INCOMPATIBLE CHANGES
Modified:
hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/cli/TestHDFSCLI.java
URL:
http://svn.apache.org/viewvc/hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/cli/TestHDFSCLI.java?rev=1298066&r1=1298065&r2=1298066&view=diff
==============================================================================
---
hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/cli/TestHDFSCLI.java
(original)
+++
hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/cli/TestHDFSCLI.java
Wed Mar 7 19:44:47 2012
@@ -29,6 +29,7 @@ import org.apache.hadoop.security.author
import org.junit.After;
import static org.junit.Assert.assertTrue;
import org.junit.Before;
+import org.junit.Test;
public class TestHDFSCLI extends CLITestHelperDFS {
@@ -95,7 +96,7 @@ public class TestHDFSCLI extends CLITest
//TODO: The test is failing due to the change in HADOOP-7360.
// HDFS-2038 is going to fix it. Disable the test for the moment.
- //@Test
+ @Test
@Override
public void testAll () {
super.testAll();