Merge pull request #5853 from jonchang/update-cpu-tests

cpu: tests permit new families and architectures
This commit is contained in:
Jonathan Chang 2019-03-08 23:41:37 +11:00 committed by GitHub
commit d9f421d244
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,7 +4,9 @@ describe Hardware::CPU do
describe "::type" do describe "::type" do
let(:cpu_types) { let(:cpu_types) {
[ [
:arm,
:intel, :intel,
:ppc,
:dunno, :dunno,
] ]
} }
@ -17,17 +19,23 @@ describe Hardware::CPU do
describe "::family" do describe "::family" do
let(:cpu_families) { let(:cpu_families) {
[ [
:arrandale,
:atom,
:broadwell,
:core, :core,
:core2, :core2,
:penryn, :dothan,
:nehalem,
:arrandale,
:sandybridge,
:ivybridge,
:haswell, :haswell,
:broadwell, :ivybridge,
:skylake,
:kabylake, :kabylake,
:merom,
:nehalem,
:penryn,
:prescott,
:presler,
:sandybridge,
:skylake,
:westmere,
:dunno, :dunno,
] ]
} }