Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9c051367 authored by Miguel Aranda's avatar Miguel Aranda Committed by Automerger Merge Worker
Browse files

Merge "Fix ZipFilePerfTest issues by closing the file in each loop iteration." am: 90c39351

parents 63042c54 90c39351
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -70,6 +70,9 @@ public class ZipFilePerfTest {
        BenchmarkState state = mPerfStatusReporter.getBenchmarkState();
        while (state.keepRunning()) {
            ZipFile zf = new ZipFile(mFile);
            state.pauseTiming();
            zf.close();
            state.resumeTiming();
        }
    }