aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test
diff options
context:
space:
mode:
authorilovezfs2016-02-03 04:06:08 -0800
committerMike McQuaid2016-02-03 21:10:01 +0000
commit37e423ebb2885f9f5799b9914357124b98e79643 (patch)
tree9e010b38d832b45ba1dfba4cc6ad19e4725009d4 /Library/Homebrew/test
parent051cd36046b3ab12806391f5d808e1702d08842b (diff)
downloadbrew-37e423ebb2885f9f5799b9914357124b98e79643.tar.bz2
os/mac/hardware: add Skylake CPU.
Closes Homebrew/homebrew#48781. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Homebrew/test')
-rw-r--r--Library/Homebrew/test/test_hardware.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/test/test_hardware.rb b/Library/Homebrew/test/test_hardware.rb
index 7d1a256a9..d38c74df6 100644
--- a/Library/Homebrew/test/test_hardware.rb
+++ b/Library/Homebrew/test/test_hardware.rb
@@ -7,7 +7,7 @@ class HardwareTests < Homebrew::TestCase
end
def test_hardware_intel_family
- families = [:core, :core2, :penryn, :nehalem, :arrandale, :sandybridge, :ivybridge, :haswell, :broadwell]
+ families = [:core, :core2, :penryn, :nehalem, :arrandale, :sandybridge, :ivybridge, :haswell, :broadwell, :skylake]
assert_includes families, Hardware::CPU.family
end if Hardware::CPU.intel?
end