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

Commit 0e784cb3 authored by Jason Sams's avatar Jason Sams Committed by Android Git Automerger
Browse files

am 0c622570: Merge "Reduce test warmup time to avoid driving into thermal...

am 0c622570: Merge "Reduce test warmup time to avoid driving into thermal throttle." into jb-mr1-dev

* commit '0c622570':
  Reduce test warmup time to avoid driving into thermal throttle.
parents 5ef5816b 0c622570
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -377,7 +377,7 @@ public class ImageProcessingActivity extends Activity
        long result = 0;

        //Log.v(TAG, "Warming");
        long t = java.lang.System.currentTimeMillis() + 2000;
        long t = java.lang.System.currentTimeMillis() + 250;
        do {
            mTest.runTest();
            mTest.finish();
@@ -391,7 +391,7 @@ public class ImageProcessingActivity extends Activity
            mTest.runTest();
            mTest.finish();
            ct++;
        } while ((t+5000) > java.lang.System.currentTimeMillis());
        } while ((t+1000) > java.lang.System.currentTimeMillis());
        t = java.lang.System.currentTimeMillis() - t;
        float ft = (float)t;
        ft /= ct;