Skip to content

Commit

Permalink
Disable CpuAffinityTest.MAYBE_SetThreadCpuAffinityMode for Nexus 7
Browse files Browse the repository at this point in the history
BUG=1138737

TBR: dcheng@chromium.org
Change-Id: I7c31b95b48be172e3305f02e7e71951aa3aa455d
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2473760
Commit-Queue: Eric Seckler <eseckler@chromium.org>
Reviewed-by: Eric Seckler <eseckler@chromium.org>
Cr-Commit-Position: refs/heads/master@{#817419}
  • Loading branch information
pkotwicz authored and Commit Bot committed Oct 15, 2020
1 parent 0dde6d0 commit 2d8f50c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions base/cpu_affinity_posix_unittest.cc
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,10 @@ TEST(CpuAffinityTest, MAYBE_SetThreadCpuAffinityMode) {
} else if (device_model == "Pixel 3a" || device_model == "Pixel 3a XL") {
expected_little_cores = 6;
EXPECT_LT(expected_little_cores, expected_total_cores);
} else if (device_model == "Nexus 5") {
// On our Nexus 5 bots, something else in the system seems to set affinity
// for the test process, making these tests flaky (crbug.com/1113964).
} else if (device_model == "Nexus 5" || device_model == "Nexus 7") {
// On our Nexus 5 and Nexus 7 bots, something else in the system seems to
// set affinity for the test process, making these tests flaky
// (crbug.com/1113964).
return;
}

Expand Down

0 comments on commit 2d8f50c

Please sign in to comment.