mirror of
https://github.com/golang/go
synced 2024-11-23 15:00:03 -07:00
net: add testing.Short Skip to test affected by local network configuration
If the local network mangles invalid DNS queries, that is not a Go problem. Change-Id: I54db392532eed988bca81b70a98cd6d11766af89 Reviewed-on: https://go-review.googlesource.com/c/go/+/461275 Run-TryBot: David Chase <drchase@google.com> Reviewed-by: Damien Neil <dneil@google.com> TryBot-Result: Gopher Robot <gobot@golang.org>
This commit is contained in:
parent
85b49d7f21
commit
780fa24260
@ -2199,6 +2199,9 @@ var goLookupIPCNAMEOrderDNSFilesModeTests = []struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func TestGoLookupIPCNAMEOrderHostsAliasesDNSFilesMode(t *testing.T) {
|
func TestGoLookupIPCNAMEOrderHostsAliasesDNSFilesMode(t *testing.T) {
|
||||||
|
if testing.Short() {
|
||||||
|
t.Skip("Makes assumptions about local networks and (re)naming that aren't always true")
|
||||||
|
}
|
||||||
defer func(orig string) { testHookHostsPath = orig }(testHookHostsPath)
|
defer func(orig string) { testHookHostsPath = orig }(testHookHostsPath)
|
||||||
testHookHostsPath = "testdata/aliases"
|
testHookHostsPath = "testdata/aliases"
|
||||||
mode := hostLookupDNSFiles
|
mode := hostLookupDNSFiles
|
||||||
|
Loading…
Reference in New Issue
Block a user