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

Commit fdbf9978 authored by Calin Juravle's avatar Calin Juravle Committed by android-build-merger
Browse files

Merge "Fix trial run in AppLaunch test"

am: 3e83b4ca

Change-Id: Ia7d8b3d41614dc09c68e4fdae05934c5f1f9e4c7
parents 4560dbd0 3e83b4ca
Loading
Loading
Loading
Loading
+8 −2
Original line number Diff line number Diff line
@@ -245,8 +245,14 @@ public class AppLaunch extends InstrumentationTestCase {
                    mIterationCycle = false;
                    // In the "applaunch.txt" file, trail launches is referenced using
                    // "TRIAL_LAUNCH"
                    String appPkgName = mNameToIntent.get(launch.getApp())
                        .getComponent().getPackageName();
                    Intent startIntent = mNameToIntent.get(launch.getApp());
                    if (startIntent == null) {
                        Log.w(TAG, "App does not exist: " + launch.getApp());
                        mResult.putString(mNameToResultKey.get(launch.getApp()),
                            "App does not exist");
                        continue;
                    }
                    String appPkgName = startIntent.getComponent().getPackageName();
                    if (SPEED_PROFILE_FILTER.equals(launch.getCompilerFilter())) {
                        assertTrue(String.format("Not able to compile the app : %s", appPkgName),
                              compileApp(VERIFY_FILTER, appPkgName));