HADOOP-8720. TestLocalFileSystem should use test root subdirectory. Contributed by Vlad Rozov
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1376123 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
2b030c6a4a
commit
6316b0641d
|
@ -417,6 +417,9 @@ Branch-2 ( Unreleased changes )
|
|||
HADOOP-8614. IOUtils#skipFully hangs forever on EOF.
|
||||
(Colin Patrick McCabe via eli)
|
||||
|
||||
HADOOP-8720. TestLocalFileSystem should use test root subdirectory.
|
||||
(Vlad Rozov via eli)
|
||||
|
||||
BREAKDOWN OF HDFS-3042 SUBTASKS
|
||||
|
||||
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.
|
||||
*/
|
||||
public class TestLocalFileSystem {
|
||||
private static String TEST_ROOT_DIR
|
||||
= System.getProperty("test.build.data","build/test/data/work-dir/localfs");
|
||||
private static final String TEST_ROOT_DIR
|
||||
= System.getProperty("test.build.data","build/test/data") + "/work-dir/localfs";
|
||||
|
||||
private Configuration conf;
|
||||
private FileSystem fileSys;
|
||||
|
|
Loading…
Reference in New Issue