test(inputs.http_listener_v2): Skip test on Windows due to hang (#14572)

This commit is contained in:
Joshua Powers 2024-01-12 10:11:32 -07:00 committed by GitHub
parent 744e74d463
commit 3bad4c5b85
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -462,8 +462,8 @@ func TestWriteHTTPSnappyData(t *testing.T) {
// writes 25,000 metrics to the listener with 10 different writers
func TestWriteHTTPHighTraffic(t *testing.T) {
if runtime.GOOS == "darwin" {
t.Skip("Skipping due to hang on darwin")
if runtime.GOOS == "darwin" || runtime.GOOS == "windows" {
t.Skip("Skipping due to hang on darwin and windows")
}
listener, err := newTestHTTPListenerV2()
require.NoError(t, err)