diff options
| author | Brett Koonce | 2014-02-15 11:24:01 -0600 |
|---|---|---|
| committer | Brett Koonce | 2014-02-15 12:37:10 -0600 |
| commit | bd6122dfe554d1c8556b00a1418149c1861de840 (patch) | |
| tree | db7d63d1181c204a383739a1f6c2acaabe8d0b7a /Library/Formula/checkstyle.rb | |
| parent | 5075a55692c0482819277b0a1ce0fb70edabbd4e (diff) | |
| download | homebrew-bd6122dfe554d1c8556b00a1418149c1861de840.tar.bz2 | |
checkstyle: remove failing test, 5.7
Closes #26749.
Diffstat (limited to 'Library/Formula/checkstyle.rb')
| -rw-r--r-- | Library/Formula/checkstyle.rb | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/Library/Formula/checkstyle.rb b/Library/Formula/checkstyle.rb index 3382c5dad..b521b7388 100644 --- a/Library/Formula/checkstyle.rb +++ b/Library/Formula/checkstyle.rb @@ -2,20 +2,11 @@ require 'formula' class Checkstyle < Formula homepage 'http://checkstyle.sourceforge.net/' - url 'http://downloads.sourceforge.net/project/checkstyle/checkstyle/5.6/checkstyle-5.6-bin.tar.gz' - sha1 'cf08ac75aedddcd3a8d1f27fcbbb6095b0d1d5e3' + url 'http://downloads.sourceforge.net/project/checkstyle/checkstyle/5.7/checkstyle-5.7-bin.tar.gz' + sha1 '232d317391b58d118a0102e8ff289fbaebd0064a' def install libexec.install "checkstyle-#{version}-all.jar", "sun_checks.xml" bin.write_jar_script libexec/"checkstyle-#{version}-all.jar", "checkstyle" end - - test do - # Note this test "fails" because the audit has issues - # TODO - pipe through cat to ingore error code - (testpath/"Test.java").write <<-EOS.undent - public class Test{ } - EOS - system "#{bin}/checkstyle", "-c", "#{libexec}/sun_checks.xml", "-r", "Test.java" - end end |
