HADOOP-15769. ABFS: distcp tests are always skipped.
Contributed by Steve Loughran
This commit is contained in:
parent
df2166a643
commit
a55d26b23e
|
@ -37,6 +37,11 @@ public class ITestAbfsFileSystemContractDistCp extends AbstractContractDistCpTes
|
||||||
super.setup();
|
super.setup();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected Configuration createConfiguration() {
|
||||||
|
return binding.getRawConfiguration();
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected AbfsFileSystemContract createContract(Configuration conf) {
|
protected AbfsFileSystemContract createContract(Configuration conf) {
|
||||||
return new AbfsFileSystemContract(conf, false);
|
return new AbfsFileSystemContract(conf, false);
|
||||||
|
|
|
@ -37,6 +37,11 @@ public class ITestAbfsFileSystemContractSecureDistCp extends AbstractContractDis
|
||||||
super.setup();
|
super.setup();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected Configuration createConfiguration() {
|
||||||
|
return binding.getRawConfiguration();
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected AbfsFileSystemContract createContract(Configuration conf) {
|
protected AbfsFileSystemContract createContract(Configuration conf) {
|
||||||
return new AbfsFileSystemContract(conf, true);
|
return new AbfsFileSystemContract(conf, true);
|
||||||
|
|
Loading…
Reference in New Issue