diff options
| author | Mateusz Gajewski | 2015-01-26 09:27:38 +0100 | 
|---|---|---|
| committer | Mike McQuaid | 2015-01-26 15:04:56 +0000 | 
| commit | 95bfb30d4ee8745ec69a85a6b955547312c9c767 (patch) | |
| tree | a49ec3f7fa0869ba5351fd12916979bef3019c82 | |
| parent | 607a6922e541b5c491642b5e4b58fa6aea7e596c (diff) | |
| download | homebrew-95bfb30d4ee8745ec69a85a6b955547312c9c767.tar.bz2 | |
sysdig 0.1.95
Closes #36223.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
| -rw-r--r-- | Library/Formula/sysdig.rb | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/Library/Formula/sysdig.rb b/Library/Formula/sysdig.rb index d2ab904a5..4296cf8d3 100644 --- a/Library/Formula/sysdig.rb +++ b/Library/Formula/sysdig.rb @@ -2,8 +2,8 @@ require "formula"  class Sysdig < Formula    homepage "http://www.sysdig.org/" -  url "https://github.com/draios/sysdig/archive/0.1.92.tar.gz" -  sha1 "77c43f76b1dc987c2d1f5929bf669e9f11b22aaa" +  url "https://github.com/draios/sysdig/archive/0.1.95.tar.gz" +  sha1 "0e07da4fa4b9d8917e73591ee8d60f43e9bacef6"    head "https://github.com/draios/sysdig.git" @@ -41,7 +41,7 @@ class Sysdig < Formula      # uses a custom output format because evt.time (in default format) is not UTC      expected_output = "1 open fd=5(<f>/tmp/sysdig/sample.scap) name=sample.scap(/tmp/sysdig/sample.scap) flags=262(O_TRUNC|O_CREAT|O_WRONLY) mode=0" -    assert_equal expected_output, `#{bin}/sysdig -r #{share}/demos/sample.scap -p "%evt.num %evt.type %evt.args" evt.type=open fd.name contains /tmp/sysdig/sample.scap`.strip +    assert_equal expected_output, `#{bin}/sysdig -r #{share}/demos/sample.scap -p "%evt.num %evt.type %evt.args" "evt.type=open and evt.arg.name contains /tmp/sysdig/sample.scap"`.strip      assert_equal 0, $?.exitstatus    end  end | 
