Merge "Recognizing running "prebuilt" launcher and manually built platform" into ub-launcher3-master

This commit is contained in:
TreeHugger Robot 2020-01-14 00:45:46 +00:00 committed by Android (Google) Code Review
commit 3d76dadcd6
1 changed files with 2 additions and 1 deletions

View File

@ -148,7 +148,8 @@ public class TestStabilityRule implements TestRule {
Log.d(TAG, "PLATFORM PRESUBMIT");
runFlavor = PLATFORM_PRESUBMIT;
} else if (launcherBuildMatcher.group("platform") != null
&& platformBuildMatcher.group("postsubmit") != null) {
&& (platformBuildMatcher.group("postsubmit") != null
|| platformBuildMatcher.group("commandLine") != null)) {
Log.d(TAG, "PLATFORM POSTSUBMIT");
runFlavor = PLATFORM_POSTSUBMIT;
} else {