From 375efe09455218d9929e41f16317074ccdf50f2a Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Sun, 22 May 2016 09:40:08 +0100 Subject: Remove LLVM-GCC support. (#252) At this point it's never a good compiler to use so let's just remove it.--- Library/Homebrew/test/test_stdlib.rb | 3 --- 1 file changed, 3 deletions(-) (limited to 'Library/Homebrew/test/test_stdlib.rb') 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 -- cgit v1.2.3