HDFS-11591. Block Storage: fix TestCBlockServer test cleanup. Contributed by Xiaoyu Yao

This commit is contained in:
Chen Liang 2017-03-31 14:41:05 -07:00 committed by Owen O'Malley
parent 7c59add3da
commit 3966f42895
1 changed files with 8 additions and 0 deletions

View File

@ -22,6 +22,7 @@
import org.apache.hadoop.scm.client.ScmClient;
import org.apache.hadoop.cblock.util.MockStorageClient;
import org.apache.hadoop.ozone.OzoneConfiguration;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.Test;
@ -47,6 +48,13 @@ public static void setup() throws Exception {
cBlockManager = new CBlockManager(conf, storageClient);
}
@AfterClass
public static void clean() {
cBlockManager.stop();
cBlockManager.join();
cBlockManager.clean();
}
/**
* Test create volume for different users.
* @throws Exception