HADOOP-8720. TestLocalFileSystem should use test root subdirectory. Contributed by Vlad Rozov
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1376124 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
095553e7a6
commit
1a6cb06197
|
@ -210,6 +210,9 @@ Release 2.0.1-alpha - UNRELEASED
|
||||||
HADOOP-8614. IOUtils#skipFully hangs forever on EOF.
|
HADOOP-8614. IOUtils#skipFully hangs forever on EOF.
|
||||||
(Colin Patrick McCabe via eli)
|
(Colin Patrick McCabe via eli)
|
||||||
|
|
||||||
|
HADOOP-8720. TestLocalFileSystem should use test root subdirectory.
|
||||||
|
(Vlad Rozov via eli)
|
||||||
|
|
||||||
BREAKDOWN OF HDFS-3042 SUBTASKS
|
BREAKDOWN OF HDFS-3042 SUBTASKS
|
||||||
|
|
||||||
HADOOP-8220. ZKFailoverController doesn't handle failure to become active
|
HADOOP-8220. ZKFailoverController doesn't handle failure to become active
|
||||||
|
|
|
@ -33,8 +33,8 @@ import org.junit.Test;
|
||||||
* This class tests the local file system via the FileSystem abstraction.
|
* This class tests the local file system via the FileSystem abstraction.
|
||||||
*/
|
*/
|
||||||
public class TestLocalFileSystem {
|
public class TestLocalFileSystem {
|
||||||
private static String TEST_ROOT_DIR
|
private static final String TEST_ROOT_DIR
|
||||||
= System.getProperty("test.build.data","build/test/data/work-dir/localfs");
|
= System.getProperty("test.build.data","build/test/data") + "/work-dir/localfs";
|
||||||
|
|
||||||
private Configuration conf;
|
private Configuration conf;
|
||||||
private FileSystem fileSys;
|
private FileSystem fileSys;
|
||||||
|
|
Loading…
Reference in New Issue