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

Commit 55db8aec authored by Android (Google) Code Review's avatar Android (Google) Code Review Committed by The Android Open Source Project
Browse files

am 4ee0a751: Merge change 3095 into donut

Merge commit '4ee0a751'

* commit '4ee0a751':
  Skip empty lines in test url list.
parents a2fe6774 4ee0a751
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -55,6 +55,9 @@ public class ReliabilityTest extends ActivityInstrumentationTestCase2<Reliabilit
        //read from BufferedReader instead of populating a list in advance,
        //this will avoid excessive memory usage in case of a large list
        while((url = listReader.readLine()) != null) {
            url = url.trim();
            if(url.length() == 0)
                continue;
            start = System.currentTimeMillis();
            Log.v(LOGTAG, "Testing URL: " + url);
            updateTestStatus(url);