aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2012-10-01 16:24:36 -0700
committerAdam Vandenberg2012-10-01 16:24:36 -0700
commit60ead1b2ca1678b196b6255e5047e8141d49cb5f (patch)
tree1f2b01e4f046fee9b5d492acbf34187a1e9cbf23 /Library/Formula
parentad0d176419f303a7656429aec2e677c627300a7f (diff)
downloadhomebrew-60ead1b2ca1678b196b6255e5047e8141d49cb5f.tar.bz2
gmp: remove option to skip tests
Refs #15114.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/gmp.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/Library/Formula/gmp.rb b/Library/Formula/gmp.rb
index 617e97040..ba7ee2019 100644
--- a/Library/Formula/gmp.rb
+++ b/Library/Formula/gmp.rb
@@ -7,7 +7,6 @@ class Gmp < Formula
sha256 '1f588aaccc41bb9aed946f9fe38521c26d8b290d003c5df807f65690f2aadec9'
option '32-bit'
- option 'skip-check', 'Do not run `make check`'
def install
# Reports of problems using gcc 4.0 on Leopard
@@ -33,7 +32,7 @@ class Gmp < Formula
system "make"
ENV.j1 # Doesn't install in parallel on 8-core Mac Pro
# Upstream implores users to always run the test suite
- system "make check" unless build.include? "skip-check"
+ system "make check"
system "make install"
end
end