Commit 98815586 authored by Robert Sesek's avatar Robert Sesek Committed by Chromium LUCI CQ

Remove cpu_brand test expectation from CPU.ARMImplementerAndPartNumber

Not all devices report this information, so do not test for it.

Bug: 1167123, 1164549
Change-Id: Ia2e0262e7a6692cccdc114bbf2decea76c4655ad
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2633668Reviewed-by: default avatarNico Weber <thakis@chromium.org>
Commit-Queue: Robert Sesek <rsesek@chromium.org>
Cr-Commit-Position: refs/heads/master@{#844145}
parent 45a45dca
......@@ -199,10 +199,8 @@ TEST(CPU, ARMImplementerAndPartNumber) {
const std::string& cpu_brand = cpu.cpu_brand();
// Some CrOS CQ bots do not report a cpu_brand https://crbug.com/1166533.
#if !defined(OS_CHROMEOS)
EXPECT_FALSE(cpu_brand.empty());
#endif
// Some devices, including on the CQ, do not report a cpu_brand
// https://crbug.com/1166533 and https://crbug.com/1167123.
EXPECT_EQ(cpu_brand, base::TrimWhitespaceASCII(cpu_brand, base::TRIM_ALL));
EXPECT_GT(cpu.implementer(), 0u);
EXPECT_GT(cpu.part_number(), 0u);
......
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