aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test
diff options
context:
space:
mode:
authorMisty De Meo2013-07-01 01:06:44 -0500
committerMisty De Meo2013-07-01 01:06:44 -0500
commit156ce4d4d5dd84a79b6a0826bbea913b40bf046d (patch)
treee748ed3f1872e639e7043d96916be950d1a00f81 /Library/Homebrew/test
parentbd0a4757c437f07c1b637c097e16e98c074741fd (diff)
downloadhomebrew-156ce4d4d5dd84a79b6a0826bbea913b40bf046d.tar.bz2
Add Haswell to CPU tests
These tests need a lot of work...
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 766ff7afd..06c009e76 100644
--- a/Library/Homebrew/test/test_hardware.rb
+++ b/Library/Homebrew/test/test_hardware.rb
@@ -11,7 +11,7 @@ class HardwareTests < Test::Unit::TestCase
def test_hardware_intel_family
if Hardware::CPU.type == :intel
assert [:core, :core2, :penryn, :nehalem,
- :arrandale, :sandybridge, :ivybridge].include?(Hardware::CPU.family)
+ :arrandale, :sandybridge, :ivybridge, :haswell].include?(Hardware::CPU.family)
end
end
end