aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMarat Dukhan <marat@fb.com>2017-10-19 12:03:04 -0700
committerMarat Dukhan <marat@fb.com>2017-10-19 12:03:17 -0700
commit558b26051c77c3bf40763efdf7d34bd2c9172ce6 (patch)
tree74a6568f061acf695970a5b94678159eadd14a7c /test
parentb589f1f376e9559a023df8677352cf16602f950a (diff)
downloadcpuinfo-558b26051c77c3bf40763efdf7d34bd2c9172ce6.tar.gz
Fix MIDR check in Huawei Ascend P7 mock test
Diffstat (limited to 'test')
-rw-r--r--test/mock/huawei-ascend-p7.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/mock/huawei-ascend-p7.cc b/test/mock/huawei-ascend-p7.cc
index 5f54333..b86de4e 100644
--- a/test/mock/huawei-ascend-p7.cc
+++ b/test/mock/huawei-ascend-p7.cc
@@ -112,7 +112,7 @@ TEST(CORES, uarch) {
TEST(CORES, midr) {
for (uint32_t i = 0; i < cpuinfo_get_cores_count(); i++) {
- ASSERT_EQ(UINT32_C(0x413FC090), cpuinfo_get_core(i)->midr);
+ ASSERT_EQ(UINT32_C(0x414FC091), cpuinfo_get_core(i)->midr);
}
}