[biabduction] Comment out resource leak test that is currently being flaky in the CI

Reviewed By: ngorogiannis

Differential Revision: D23373023

fbshipit-source-id: 698405d34
master
Dulma Churchill 5 years ago committed by Facebook GitHub Bot
parent 29fd9e13d1
commit 6e67a6a569

@ -33,7 +33,8 @@ public class ReaderLeaks {
} catch (IOException e) { } catch (IOException e) {
} }
} }
/* This test seems to be flaky in the CI at the moment.
We guess it's because of timeouts in the analysis.
public void readerClosedOk() throws IOException { public void readerClosedOk() throws IOException {
Reader r = null; Reader r = null;
try { try {
@ -45,7 +46,7 @@ public class ReaderLeaks {
if (r != null) r.close(); if (r != null) r.close();
} }
} }
*/
// BufferedReader tests // BufferedReader tests
public void bufferedReaderNotClosedAfterRead() { public void bufferedReaderNotClosedAfterRead() {

Loading…
Cancel
Save