Merge pull request #10783 from Bo98/ubuntu-20.04-ci-fix

test/hardware/cpu_spec: add missing families
This commit is contained in:
Bo Anderson 2021-03-05 00:50:20 +00:00 committed by GitHub
commit 0b2a459a6b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,6 +22,12 @@ describe Hardware::CPU do
describe "::family" do
let(:cpu_families) {
[
:amd_k7,
:amd_k8,
:amd_k8_k10_hybrid,
:amd_k10,
:amd_k12,
:arm,
:arm_firestorm_icestorm,
:arm_hurricane_zephyr,
:arm_lightning_thunder,
@ -30,22 +36,29 @@ describe Hardware::CPU do
:arm_typhoon,
:arm_vortex_tempest,
:atom,
:bobcat,
:broadwell,
:bulldozer,
:cannonlake,
:core,
:core2,
:dothan,
:haswell,
:icelake,
:ivybridge,
:jaguar,
:kabylake,
:merom,
:nehalem,
:penryn,
:ppc,
:prescott,
:presler,
:sandybridge,
:skylake,
:westmere,
:zen,
:zen3,
:dunno,
]
}