Skip to content

Commit

Permalink
Skip hanging test on darwin
Browse files Browse the repository at this point in the history
  • Loading branch information
danielnelson committed Mar 22, 2018
1 parent d7f279e commit 3658ac8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions plugins/inputs/http_listener/http_listener_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import (
"io/ioutil"
"net/http"
"net/url"
"runtime"
"strconv"
"sync"
"testing"
Expand Down Expand Up @@ -425,6 +426,9 @@ func TestWriteHTTPGzippedData(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")
}
listener := newTestHTTPListener()

acc := &testutil.Accumulator{}
Expand Down

0 comments on commit 3658ac8

Please sign in to comment.