aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test
diff options
context:
space:
mode:
authorBob W. Hogg2016-12-18 14:50:38 -0800
committerBob W. Hogg2016-12-18 14:50:38 -0800
commitebb659af7da12771efe134e1f9386324423f4246 (patch)
tree7ffd2531a27dbb360c40be5ba5ad779815b91218 /Library/Homebrew/test
parentb0d2dc7278474bc6eb681005daa1c2fee3a96a8f (diff)
downloadbrew-ebb659af7da12771efe134e1f9386324423f4246.tar.bz2
Add Kaby Lake to Linux hardware list
Note that no Mac hardware using a Kaby Lake processor has been released yet, so do not add it to the equivalent list for macOS.
Diffstat (limited to 'Library/Homebrew/test')
-rw-r--r--Library/Homebrew/test/hardware_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/test/hardware_test.rb b/Library/Homebrew/test/hardware_test.rb
index 2bea5387d..69f881a60 100644
--- a/Library/Homebrew/test/hardware_test.rb
+++ b/Library/Homebrew/test/hardware_test.rb
@@ -8,7 +8,7 @@ class HardwareTests < Homebrew::TestCase
if Hardware::CPU.intel?
def test_hardware_intel_family
- families = [:core, :core2, :penryn, :nehalem, :arrandale, :sandybridge, :ivybridge, :haswell, :broadwell, :skylake, :dunno]
+ families = [:core, :core2, :penryn, :nehalem, :arrandale, :sandybridge, :ivybridge, :haswell, :broadwell, :skylake, :kabylake, :dunno]
assert_includes families, Hardware::CPU.family
end
end