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