fix checkstyle

This commit is contained in:
wenxin he 2017-06-17 11:30:18 +08:00 committed by 何文鑫10087558
parent 9a50dfedd9
commit 2039eb7e86

View File

@ -337,9 +337,10 @@ public void testSequentialReadSkip() throws Exception {
@Test(timeout = 60000)
public void testSequentialTruncate() throws Exception {
FileSystem fs = cluster.getFileSystem();
// given DEFAULT_NR_BYTES files to be truncated
bench.sequentialTest(fs, TestType.TEST_TYPE_WRITE,
DEFAULT_NR_BYTES,
DEFAULT_NR_FILES); // make sure the length of files to be truncated is DEFAULT_NR_BYTES
DEFAULT_NR_BYTES, DEFAULT_NR_FILES);
// test truncate
bench.sequentialTest(fs, TestType.TEST_TYPE_TRUNCATE,
DEFAULT_NR_BYTES, DEFAULT_NR_FILES);
}
@ -774,14 +775,16 @@ private void sequentialTest(FileSystem fs,
default:
return;
}
for(int i=0; i < nrFiles; i++) {
for (int i = 0; i < nrFiles; i++) {
ioer.configure(new JobConf(config, TestDFSIO.class));
String fileName = getFileName(i);
ioer.stream = ioer.getIOStream(fileName);
try {
ioer.doIO(Reporter.NULL, fileName, fileSize);
} finally {
if(ioer.stream != null) ioer.stream.close();
if (ioer.stream != null) {
ioer.stream.close();
}
}
}
}