Commit c2e22fc8 authored by Theresa's avatar Theresa Committed by Commit Bot

Disable FeedNewTabPage tests on M 64-bit bots

BUG=854866

Change-Id: Iff9021221210078e2d013b4c54628b6667323eee
Reviewed-on: https://chromium-review.googlesource.com/1110676Reviewed-by: default avatarBecky Zhou <huayinz@chromium.org>
Commit-Queue: Theresa <twellington@chromium.org>
Cr-Commit-Position: refs/heads/master@{#569394}
parent 0a6b1c3e
......@@ -12,6 +12,7 @@ import android.app.Activity;
import android.app.Instrumentation;
import android.app.Instrumentation.ActivityMonitor;
import android.graphics.Canvas;
import android.os.Build;
import android.support.test.InstrumentationRegistry;
import android.support.test.filters.LargeTest;
import android.support.test.filters.MediumTest;
......@@ -163,6 +164,11 @@ public class NewTabPageTest {
@ParameterAnnotations.UseMethodParameterBefore(InterestFeedParams.class)
public void setupInterestFeed(boolean interestFeedEnabled) {
// TODO(twellington): Re-enable interest Feed test on arm64 M. See https://crbug.com/854866.
if (Build.VERSION.SDK_INT == Build.VERSION_CODES.M
&& Arrays.asList(Build.SUPPORTED_ABIS).contains("arm64-v8a")) {
interestFeedEnabled = false;
}
if (interestFeedEnabled) {
Features.getInstance().enable(ChromeFeatureList.INTEREST_FEED_CONTENT_SUGGESTIONS);
} else {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment