aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorStian Eikeland2014-10-13 10:48:03 +0200
committerJack Nagel2014-10-13 23:34:03 -0500
commit43b7b6550fccff9f0b2759f9b48f38d660dab0c5 (patch)
tree36d2dfbdf1a2e2fa69ac5b53b341d284fb445877 /Library
parentff211328b1119de5a18db921805339809a92a87e (diff)
downloadhomebrew-43b7b6550fccff9f0b2759f9b48f38d660dab0c5.tar.bz2
siege 3.0.7
Closes #33134. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/siege.rb10
1 files changed, 6 insertions, 4 deletions
diff --git a/Library/Formula/siege.rb b/Library/Formula/siege.rb
index c068af163..1071d8c2c 100644
--- a/Library/Formula/siege.rb
+++ b/Library/Formula/siege.rb
@@ -2,10 +2,8 @@ require 'formula'
class Siege < Formula
homepage 'http://www.joedog.org/index/siege-home'
- # The primary download site is (incorrectly) serving the content decompressed
- # url 'http://www.joedog.org/pub/siege/siege-3.0.5.tar.gz'
- url 'http://ftp.de.debian.org/debian/pool/main/s/siege/siege_3.0.5.orig.tar.gz'
- sha256 '283e624fd802775bf6eb8832c4f76dad6692aa1f3efa98db1ae2ddaba651ca99'
+ url 'http://download.joedog.org/siege/siege-3.0.7.tar.gz'
+ sha256 'c651e2ae871cc680eb375f128b4809e97ceecf367f6bd65c3df00603fbceed4e'
def install
# To avoid unnecessary warning due to hardcoded path, create the folder first
@@ -34,4 +32,8 @@ class Siege < Formula
Run siege.config to create the ~/.siegerc config file.
EOS
end
+
+ test do
+ system "#{bin}/siege", "--concurrent=1", "--reps=1", "http://google.com/"
+ end
end