Skip to content

Commit

Permalink
test(inputs.syslog): Skip test on Windows (#15048)
Browse files Browse the repository at this point in the history
  • Loading branch information
powersj authored Mar 22, 2024
1 parent 2dde6a0 commit 40b88b0
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions plugins/inputs/syslog/syslog_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,10 @@ func TestCases(t *testing.T) {
}

func TestSocketClosed(t *testing.T) {
if runtime.GOOS == "windows" {
t.Skip("Skipping test as very flaky on Windows")
}

// Setup the plugin
plugin := &Syslog{
Address: "tcp://127.0.0.1:0",
Expand Down

0 comments on commit 40b88b0

Please sign in to comment.