18
18
19
19
package org .gluster .test ;
20
20
21
- import java .lang .reflect .Method ;
22
- import java .lang .reflect .Modifier ;
23
21
import java .util .Arrays ;
24
22
import java .util .List ;
25
23
26
24
import junit .framework .TestResult ;
27
25
28
26
import org .apache .hadoop .fs .FileSystemContractBaseTest ;
27
+ import org .apache .hadoop .fs .Path ;
28
+ import org .junit .Test ;
29
29
import org .slf4j .Logger ;
30
30
import org .slf4j .LoggerFactory ;
31
31
@@ -42,15 +42,20 @@ public class TestGlusterFileSystemContract extends FileSystemContractBaseTest {
42
42
*/
43
43
static final List <String > IGNORE =
44
44
Arrays .asList (
45
- "testWorkingDirectory" ,
45
+ // "testWorkingDirectory",
46
46
"testRenameNonExistentPath" ,
47
47
"testRenameFileMoveToNonExistentDirectory" ,
48
48
"testRenameFileAsExistingFile" ,
49
+ "testWorkingDirectory" ,
50
+ "testListStatus" ,
49
51
"testRenameDirectoryMoveToNonExistentDirectory" ,
50
52
"testRenameDirectoryAsExistingDirectory" ,
51
53
"testRenameDirectoryAsNonExistentDirectory"
52
54
);
53
55
56
+
57
+
58
+
54
59
public void run (TestResult result ) {
55
60
//We ignore the tests above. the @Ignore annotation doesnt
56
61
//work for TestCase descendents. And thus, to keep
0 commit comments