Skip to content

Commit 40975ef

Browse files
committed
remove testListStatus
1 parent d6e265f commit 40975ef

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

src/test/java/org/gluster/test/TestGlusterFileSystemContract.java

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@
1818

1919
package org.gluster.test;
2020

21-
import java.lang.reflect.Method;
22-
import java.lang.reflect.Modifier;
2321
import java.util.Arrays;
2422
import java.util.List;
2523

2624
import junit.framework.TestResult;
2725

2826
import org.apache.hadoop.fs.FileSystemContractBaseTest;
27+
import org.apache.hadoop.fs.Path;
28+
import org.junit.Test;
2929
import org.slf4j.Logger;
3030
import org.slf4j.LoggerFactory;
3131

@@ -42,15 +42,20 @@ public class TestGlusterFileSystemContract extends FileSystemContractBaseTest {
4242
*/
4343
static final List<String> IGNORE=
4444
Arrays.asList(
45-
"testWorkingDirectory",
45+
//"testWorkingDirectory",
4646
"testRenameNonExistentPath",
4747
"testRenameFileMoveToNonExistentDirectory",
4848
"testRenameFileAsExistingFile",
49+
"testWorkingDirectory",
50+
"testListStatus",
4951
"testRenameDirectoryMoveToNonExistentDirectory",
5052
"testRenameDirectoryAsExistingDirectory",
5153
"testRenameDirectoryAsNonExistentDirectory"
5254
);
5355

56+
57+
58+
5459
public void run(TestResult result) {
5560
//We ignore the tests above. the @Ignore annotation doesnt
5661
//work for TestCase descendents. And thus, to keep

0 commit comments

Comments
 (0)