aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test/test_stdlib.rb
diff options
context:
space:
mode:
authorMike McQuaid2016-05-22 09:40:08 +0100
committerMike McQuaid2016-05-22 09:40:08 +0100
commit375efe09455218d9929e41f16317074ccdf50f2a (patch)
tree4d7f48fd6cd36e00c5e24712e8f7a812e042253d /Library/Homebrew/test/test_stdlib.rb
parent7b2d1a5b08f4da122d995bdf8ba437e3cb25dc95 (diff)
downloadbrew-375efe09455218d9929e41f16317074ccdf50f2a.tar.bz2
Remove LLVM-GCC support. (#252)
At this point it's never a good compiler to use so let's just remove it.
Diffstat (limited to 'Library/Homebrew/test/test_stdlib.rb')
-rw-r--r--Library/Homebrew/test/test_stdlib.rb3
1 files changed, 0 insertions, 3 deletions
diff --git a/Library/Homebrew/test/test_stdlib.rb b/Library/Homebrew/test/test_stdlib.rb
index eb423f283..ee53e7c8c 100644
--- a/Library/Homebrew/test/test_stdlib.rb
+++ b/Library/Homebrew/test/test_stdlib.rb
@@ -6,7 +6,6 @@ class CxxStdlibTests < Homebrew::TestCase
def setup
@clang = CxxStdlib.create(:libstdcxx, :clang)
@gcc = CxxStdlib.create(:libstdcxx, :gcc)
- @llvm = CxxStdlib.create(:libstdcxx, :llvm)
@gcc4 = CxxStdlib.create(:libstdcxx, :gcc_4_0)
@gcc48 = CxxStdlib.create(:libstdcxx, "gcc-4.8")
@gcc49 = CxxStdlib.create(:libstdcxx, "gcc-4.9")
@@ -16,7 +15,6 @@ class CxxStdlibTests < Homebrew::TestCase
def test_apple_libstdcxx_intercompatibility
assert @clang.compatible_with?(@gcc)
- assert @clang.compatible_with?(@llvm)
assert @clang.compatible_with?(@gcc4)
end
@@ -44,7 +42,6 @@ class CxxStdlibTests < Homebrew::TestCase
def test_apple_compiler_reporting
assert_predicate @clang, :apple_compiler?
assert_predicate @gcc, :apple_compiler?
- assert_predicate @llvm, :apple_compiler?
assert_predicate @gcc4, :apple_compiler?
refute_predicate @gcc48, :apple_compiler?
end