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

Commit c1d86515 authored by Steve Block's avatar Steve Block
Browse files

Change the default JS engine for Android-specific layout test results in DRT from JSC to V8

Change-Id: Idaf5602d7f45533058b0f43d66377b10b1e7d708
parent 7819e1d7
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -361,8 +361,8 @@ public class LayoutTestsAutoTest extends ActivityInstrumentationTestCase2<TestSh
        // Read settings
        mTestPathPrefix = (new File(LAYOUT_TESTS_ROOT + runner.mTestPath)).getAbsolutePath();
        mRebaselineResults = runner.mRebaseline;
        // JSC is the default JavaScript engine.
        mJsEngine = runner.mJsEngine == null ? "jsc" : runner.mJsEngine;
        // V8 is the default JavaScript engine.
        mJsEngine = runner.mJsEngine == null ? "v8" : runner.mJsEngine;

        int timeout = runner.mTimeoutInMillis;
        if (timeout <= 0) {