HADOOP-12368. Mark ViewFileSystemBaseTest and ViewFsBaseTest as abstract.

This commit is contained in:
Andrew Wang 2015-08-31 18:17:14 -07:00
parent 24f6a7c956
commit 7ad3556ed3
3 changed files with 5 additions and 2 deletions

View File

@ -756,6 +756,9 @@ Release 2.8.0 - UNRELEASED
HADOOP-12325. RPC Metrics : Add the ability track and log slow RPCs. HADOOP-12325. RPC Metrics : Add the ability track and log slow RPCs.
(Anu Engineer via xyao) (Anu Engineer via xyao)
HADOOP-12368. Mark ViewFileSystemBaseTest and ViewFsBaseTest as abstract.
(wang)
OPTIMIZATIONS OPTIMIZATIONS
HADOOP-11785. Reduce the number of listStatus operation in distcp HADOOP-11785. Reduce the number of listStatus operation in distcp

View File

@ -77,7 +77,7 @@ import org.junit.Test;
* </p> * </p>
*/ */
public class ViewFileSystemBaseTest { abstract public class ViewFileSystemBaseTest {
FileSystem fsView; // the view file system - the mounts are here FileSystem fsView; // the view file system - the mounts are here
FileSystem fsTarget; // the target file system - the mount will point here FileSystem fsTarget; // the target file system - the mount will point here
Path targetTestRoot; Path targetTestRoot;

View File

@ -76,7 +76,7 @@ import org.mockito.Mockito;
* @AfterClass public static void ClusterShutdownAtEnd() * @AfterClass public static void ClusterShutdownAtEnd()
* </p> * </p>
*/ */
public class ViewFsBaseTest { abstract public class ViewFsBaseTest {
FileContext fcView; // the view file system - the mounts are here FileContext fcView; // the view file system - the mounts are here
FileContext fcTarget; // the target file system - the mount will point here FileContext fcTarget; // the target file system - the mount will point here
Path targetTestRoot; Path targetTestRoot;