-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmain.cpp
57 lines (48 loc) · 1.29 KB
/
main.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
// Copyright © 2024 Cyberus Technology GmbH <[email protected]>
//
// SPDX-License-Identifier: GPL-2.0-or-later
#include <array>
#include <cstring>
#include <string>
#include <toyos/baretest/baretest.hpp>
#include <toyos/util/cpuid.hpp>
template<size_t N>
void test_cpuid_string(std::array<std::string, N>& valid_cpu_models)
{
auto model = util::cpuid::get_extended_brand_string();
info("Valid CPU models:");
for (auto& m : valid_cpu_models) {
info(" * {s}", m.c_str());
}
info("Detected CPUID string \"{s}\"", model.c_str());
bool found_valid_model = false;
for (auto& m : valid_cpu_models) {
if (m == model.substr(0, 16)) {
found_valid_model = true;
break;
}
}
BARETEST_ASSERT(found_valid_model);
}
/*
* This list is only chosen to match our own CI testing infrastructure. We can
* and should extend it in the future.
*
* Keep in sync with README!
*/
std::array<std::string, 9> valid_cpu_models{ {
"Intel(R) Core(TM",
" Intel(R) C",
"Intel(R) Celeron",
"Intel(R) Xeon(R)",
"Intel(R) Pentium",
"11th Gen Intel(R",
"12th Gen Intel(R",
"13th Gen Intel(R",
"AMD Ryzen 7 PRO ",
} };
TEST_CASE(cpuid_string_is_native)
{
test_cpuid_string(valid_cpu_models);
}
BARETEST_RUN;