aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorTobias Lidskog2013-02-28 21:57:14 +0100
committerAdam Vandenberg2013-03-10 10:37:56 -0700
commita4a795c09684dcd744e6108a1bc819e390c89957 (patch)
treed97530d91b399eef023ec4e4c644adc057a48d79 /Library
parent00f05eafe988267da4797922b350aee68c8dd937 (diff)
downloadbrew-a4a795c09684dcd744e6108a1bc819e390c89957.tar.bz2
Fix test failure on ivybridge cpus.
Closes Homebrew/homebrew#18371. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/test/test_hardware.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/Library/Homebrew/test/test_hardware.rb b/Library/Homebrew/test/test_hardware.rb
index a1f94f6b3..ab55826f9 100644
--- a/Library/Homebrew/test/test_hardware.rb
+++ b/Library/Homebrew/test/test_hardware.rb
@@ -10,7 +10,8 @@ class HardwareTests < Test::Unit::TestCase
def test_hardware_intel_family
if Hardware.cpu_type == :intel
- assert [:core, :core2, :penryn, :nehalem, :arrandale, :sandybridge].include?(Hardware.intel_family)
+ assert [:core, :core2, :penryn, :nehalem,
+ :arrandale, :sandybridge, :ivybridge].include?(Hardware.intel_family)
end
end
end