Commit 87eb920b authored by Mei Liang's avatar Mei Liang Committed by Chromium LUCI CQ

Disable HeapProfilingTest#testModeBrowser on L

Bug: 1163744
Change-Id: Ie2261964525e1ecf3ae274645ba7534510fcb6cd
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2613947
Commit-Queue: Mei Liang <meiliang@chromium.org>
Reviewed-by: default avatarYue Zhang <yuezhanggg@chromium.org>
Reviewed-by: default avatarMei Liang <meiliang@chromium.org>
Reviewed-by: default avatarNate Fischer <ntfschr@chromium.org>
Cr-Commit-Position: refs/heads/master@{#840891}
parent f557f15e
......@@ -6,6 +6,8 @@ package org.chromium.android_webview.test;
import static org.chromium.android_webview.test.OnlyRunIn.ProcessMode.MULTI_PROCESS;
import android.os.Build.VERSION_CODES;
import androidx.test.filters.MediumTest;
import org.junit.Assert;
......@@ -15,6 +17,7 @@ import org.junit.Test;
import org.junit.runner.RunWith;
import org.chromium.base.test.util.CommandLineFlags;
import org.chromium.base.test.util.DisableIf;
import org.chromium.components.heap_profiling.multi_process.HeapProfilingTestShim;
/**
......@@ -31,10 +34,13 @@ public class HeapProfilingTest {
@Test
@MediumTest
// clang-format off
@DisableIf.Build(sdk_is_less_than = VERSION_CODES.M,
message = "http://crbug.com/1163744")
@CommandLineFlags.Add({"memlog=browser", "memlog-stack-mode=native-include-thread-names",
"memlog-sampling-rate=1"})
public void
testModeBrowser() {
public void testModeBrowser() {
// clang-format on
HeapProfilingTestShim shim = new HeapProfilingTestShim();
Assert.assertTrue(
shim.runTestForMode("browser", false, "native-include-thread-names", false, false));
......
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