test/hardware/cpu_spec: add missing families

This commit is contained in:
Bo Anderson 2021-03-04 23:50:35 +00:00
parent b8448c4864
commit e1da637f9a
No known key found for this signature in database
GPG Key ID: 3DB94E204E137D65

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,
]
}