Commit 9e1c9457 authored by Tim Volodine's avatar Tim Volodine Committed by Commit Bot

Disable failing tests in weblayer.test.BundleLanguageTest on P+ bots

The BundleLanguageTest#testWebLayerString and
BundleLanguageTest#testSharedString tests are
failing on android-pie-x86-rel.

BUG=1130660
TBR=cduvall@chromium.org

Change-Id: I6720dddfef3ba936e91685cbb799bda5d297b669
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2421656Reviewed-by: default avatarTim Volodine <timvolodine@chromium.org>
Commit-Queue: Tim Volodine <timvolodine@chromium.org>
Cr-Commit-Position: refs/heads/master@{#808954}
parent 7806d6e5
......@@ -8,6 +8,7 @@ import android.content.Context;
import android.content.res.AssetManager;
import android.content.res.Configuration;
import android.content.res.Resources;
import android.os.Build.VERSION_CODES;
import android.util.SparseArray;
import androidx.test.filters.SmallTest;
......@@ -18,6 +19,7 @@ import org.junit.Rule;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.chromium.base.test.util.DisableIf;
import org.chromium.weblayer.TestWebLayer;
import org.chromium.weblayer.shell.InstrumentationActivity;
......@@ -46,6 +48,8 @@ public class BundleLanguageTest {
@Test
@SmallTest
@DisableIf.
Build(sdk_is_greater_than = VERSION_CODES.O_MR1, message = "https://crbug.com/1130660")
public void testWebLayerString() throws Exception {
// The bundle tests have both "es" and "fr" splits installed, so each of these should have a
// separate translation.
......@@ -62,6 +66,8 @@ public class BundleLanguageTest {
@Test
@SmallTest
@DisableIf.
Build(sdk_is_greater_than = VERSION_CODES.O_MR1, message = "https://crbug.com/1130660")
public void testSharedString() throws Exception {
// This string is shared with WebView, so should have a separate translation for all
// locales, even locales without splits installed.
......
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