aboutsummaryrefslogtreecommitdiff
path: root/libgo
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@gcc.gnu.org>2018-01-31 14:43:37 +0000
committerIan Lance Taylor <ian@gcc.gnu.org>2018-01-31 14:43:37 +0000
commitcb6a6b25e409efd06ad7ffb87cf73bbe243d704a (patch)
tree933a677f257b6b7a21b0c50ce9b19f57233a2951 /libgo
parent7a157266876058eee921323240e4bfd7e5a84fba (diff)
downloadgcc-cb6a6b25e409efd06ad7ffb87cf73bbe243d704a.zip
gcc-cb6a6b25e409efd06ad7ffb87cf73bbe243d704a.tar.gz
gcc-cb6a6b25e409efd06ad7ffb87cf73bbe243d704a.tar.bz2
net: rename TestAddr6 to avoid gotest confusion
On ppc64 gotest treats data variables whose names begin with "Test" as tests to run. This is to support the function descriptors used for ppc64 ELF ABI v1. This causes gotest to think that TestAddr6 is a test, when it is actually a variable. For a simple fix until we can figure out how to write gotest properly, rename the variable. Fixes golang/go#23623 Reviewed-on: https://go-review.googlesource.com/90995 From-SVN: r257235
Diffstat (limited to 'libgo')
-rw-r--r--libgo/go/net/dnsclient_unix_test.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/libgo/go/net/dnsclient_unix_test.go b/libgo/go/net/dnsclient_unix_test.go
index 82a6c65..9e4015f 100644
--- a/libgo/go/net/dnsclient_unix_test.go
+++ b/libgo/go/net/dnsclient_unix_test.go
@@ -27,7 +27,7 @@ var goResolver = Resolver{PreferGo: true}
const TestAddr uint32 = 0xc0000201
// Test address from 2001:db8::/32 block, reserved by RFC 3849 for documentation.
-var TestAddr6 = [16]byte{0x20, 0x01, 0x0d, 0xb8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1}
+var VarTestAddr6 = [16]byte{0x20, 0x01, 0x0d, 0xb8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1}
var dnsTransportFallbackTests = []struct {
server string
@@ -506,7 +506,7 @@ func TestGoLookupIPWithResolverConfig(t *testing.T) {
Class: dnsClassINET,
Rdlength: 16,
},
- AAAA: TestAddr6,
+ AAAA: VarTestAddr6,
})
}
}
@@ -1230,7 +1230,7 @@ func TestStrictErrorsLookupIP(t *testing.T) {
Class: dnsClassINET,
Rdlength: 16,
},
- AAAA: TestAddr6,
+ AAAA: VarTestAddr6,
},
}
default: