From 448bda167f135f9dedc9db969935eea99a59af25 Mon Sep 17 00:00:00 2001 From: Armin Date: Thu, 15 Jun 2017 14:24:01 +0200 Subject: [PATCH] #7460 ignore failing tests caused by #e939c6a removing CEF module Fixes #7462 --- logstash-core/spec/logstash/runner_spec.rb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/logstash-core/spec/logstash/runner_spec.rb b/logstash-core/spec/logstash/runner_spec.rb index 42401eaf8..2b54652aa 100644 --- a/logstash-core/spec/logstash/runner_spec.rb +++ b/logstash-core/spec/logstash/runner_spec.rb @@ -315,6 +315,7 @@ describe LogStash::Runner do context "with a good configuration" do let(:module_string) { "cef" } it "should exit successfully" do + skip("Skipped until cef module is added back to the codebase as explained in #7455") expect(logger).not_to receive(:fatal) expect(subject.run(args)).to eq(0) end @@ -348,6 +349,7 @@ describe LogStash::Runner do end end it "should log fatally and return a bad exit code" do + skip("Skipped until cef module is added back to the codebase as explained in #7455") expect(subject.run("bin/logstash", args)).to eq(1) end end @@ -378,6 +380,7 @@ describe LogStash::Runner do expect(logger).not_to receive(:error) end it "should not terminate logstash" do + skip("Skipped until cef module is added back to the codebase as explained in #7455") expect(subject.run("bin/logstash", args)).to be_nil end end