Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: Turn off aborted testcases on windows #3094

Merged
merged 2 commits into from
Aug 31, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Omit unstable testcase on AppVeyor
Signed-off-by: Hiroshi Hatake <hatake@clear-code.com>
  • Loading branch information
cosmo0920 committed Aug 6, 2020
commit 62e73c7d73636b0cbbd7b5337b18bdb783c991fb
3 changes: 3 additions & 0 deletions test/plugin/test_in_tail.rb
Original file line number Diff line number Diff line change
Expand Up @@ -1403,6 +1403,9 @@ def test_tail_path_with_multiline_without_firstline
end

def test_tail_path_with_multiline_with_multiple_paths
if ENV["APPVEYOR"] && Fluent.windows?
omit "This testcase is unstable on AppVeyor."
end
files = ["#{TMP_DIR}/tail1.txt", "#{TMP_DIR}/tail2.txt"]
files.each { |file| File.open(file, "wb") { |f| } }

Expand Down