mirror of
https://github.com/elastic/logstash.git
synced 2025-04-24 14:47:19 -04:00
Fixes #7462
This commit is contained in:
parent
24d2faba10
commit
448bda167f
1 changed files with 3 additions and 0 deletions
|
@ -315,6 +315,7 @@ describe LogStash::Runner do
|
||||||
context "with a good configuration" do
|
context "with a good configuration" do
|
||||||
let(:module_string) { "cef" }
|
let(:module_string) { "cef" }
|
||||||
it "should exit successfully" do
|
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(logger).not_to receive(:fatal)
|
||||||
expect(subject.run(args)).to eq(0)
|
expect(subject.run(args)).to eq(0)
|
||||||
end
|
end
|
||||||
|
@ -348,6 +349,7 @@ describe LogStash::Runner do
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
it "should log fatally and return a bad exit code" do
|
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)
|
expect(subject.run("bin/logstash", args)).to eq(1)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -378,6 +380,7 @@ describe LogStash::Runner do
|
||||||
expect(logger).not_to receive(:error)
|
expect(logger).not_to receive(:error)
|
||||||
end
|
end
|
||||||
it "should not terminate logstash" do
|
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
|
expect(subject.run("bin/logstash", args)).to be_nil
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue