aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/cmd/test-bot.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/Library/Homebrew/cmd/test-bot.rb b/Library/Homebrew/cmd/test-bot.rb
index 5c62417d0..3106c2969 100644
--- a/Library/Homebrew/cmd/test-bot.rb
+++ b/Library/Homebrew/cmd/test-bot.rb
@@ -382,6 +382,12 @@ module Homebrew
test "brew", "uses", canonical_formula_name
formula = Formulary.factory(canonical_formula_name)
+
+ formula.conflicts.map { |c| Formulary.factory(c.name) }.
+ select { |f| f.installed? }.each do |conflict|
+ test "brew", "unlink", conflict.name
+ end
+
installed_gcc = false
deps = []