diff options
| author | David Crawshaw <crawshaw@golang.org> | 2015-03-23 10:15:35 -0400 |
|---|---|---|
| committer | David Crawshaw <crawshaw@golang.org> | 2015-03-23 14:27:17 +0000 |
| commit | 5bf9249edafa26eb2b4d7768a48e5ace8656a01a (patch) | |
| tree | 953dce1ad3dfa126f4ee8ae7776f129b41fee592 /src | |
| parent | 14082fad9b851267520d5d04aa314719bda47e9e (diff) | |
| download | go-5bf9249edafa26eb2b4d7768a48e5ace8656a01a.tar.xz | |
net/http: enable segfaulting test on darwin/arm
Issue #10043 was resolved by https://golang.org/cl/7072.
This test now passes.
Change-Id: I7bdef63d9ee4edcede23613a14a2ddce14018f34
Reviewed-on: https://go-review.googlesource.com/7931
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Diffstat (limited to 'src')
| -rw-r--r-- | src/net/http/transport_test.go | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/net/http/transport_test.go b/src/net/http/transport_test.go index 78f62a9859..504a6a7b56 100644 --- a/src/net/http/transport_test.go +++ b/src/net/http/transport_test.go @@ -1788,13 +1788,6 @@ var proxyFromEnvTests = []proxyFromEnvTest{ } func TestProxyFromEnvironment(t *testing.T) { - if runtime.GOOS == "darwin" && runtime.GOARCH == "arm" { - // fmt.Sprintf("%v", (*URL)(nil)) causes a segfault inside the string - // method, which lldb intercepts on the darwin/arm builder. Until it - // is fixed, skipping the test. - t.Skipf("skipping on %s/%s, issue 10043", runtime.GOOS, runtime.GOARCH) - } - ResetProxyEnv() for _, tt := range proxyFromEnvTests { os.Setenv("HTTP_PROXY", tt.env) |
