aboutsummaryrefslogtreecommitdiff
path: root/src/log
diff options
context:
space:
mode:
authorDavid Crawshaw <crawshaw@golang.org>2015-04-11 19:26:50 -0400
committerDavid Crawshaw <crawshaw@golang.org>2015-04-13 11:54:28 +0000
commitb214a88d7671c8ad1192a0e9622a8c36bce3cecb (patch)
tree9157dc723c1964230a147572f5e3310e4c569617 /src/log
parent1d57943987e6a13a0aa0e57d8a40a66fb877e636 (diff)
downloadgo-b214a88d7671c8ad1192a0e9622a8c36bce3cecb.tar.gz
go-b214a88d7671c8ad1192a0e9622a8c36bce3cecb.zip
log/syslog: limiting tests on darwin/arm64
Just like darwin/arm. Change-Id: Ic5c6c0b2fdbb89f4579677e120a8f2dbf300e5b9 Reviewed-on: https://go-review.googlesource.com/8820 Reviewed-by: Minux Ma <minux@golang.org>
Diffstat (limited to 'src/log')
-rw-r--r--src/log/syslog/syslog_test.go21
1 files changed, 15 insertions, 6 deletions
diff --git a/src/log/syslog/syslog_test.go b/src/log/syslog/syslog_test.go
index 7f7d7fd6d8..85aec536ab 100644
--- a/src/log/syslog/syslog_test.go
+++ b/src/log/syslog/syslog_test.go
@@ -121,8 +121,11 @@ func TestWithSimulated(t *testing.T) {
msg := "Test 123"
transport := []string{"unix", "unixgram", "udp", "tcp"}
- if runtime.GOOS == "darwin" && runtime.GOARCH == "arm" {
- transport = []string{"udp", "tcp"}
+ if runtime.GOOS == "darwin" {
+ switch runtime.GOARCH {
+ case "arm", "arm64":
+ transport = []string{"udp", "tcp"}
+ }
}
for _, tr := range transport {
@@ -147,8 +150,11 @@ func TestWithSimulated(t *testing.T) {
}
func TestFlap(t *testing.T) {
- if runtime.GOOS == "darwin" && runtime.GOARCH == "arm" {
- t.Skipf("skipping on %s/%s", runtime.GOOS, runtime.GOARCH)
+ if runtime.GOOS == "darwin" {
+ switch runtime.GOARCH {
+ case "arm", "arm64":
+ t.Skipf("skipping on %s/%s", runtime.GOOS, runtime.GOARCH)
+ }
}
net := "unix"
@@ -315,8 +321,11 @@ func TestConcurrentReconnect(t *testing.T) {
const N = 10
const M = 100
net := "unix"
- if runtime.GOOS == "darwin" && runtime.GOARCH == "arm" {
- net = "tcp"
+ if runtime.GOOS == "darwin" {
+ switch runtime.GOARCH {
+ case "arm", "arm64":
+ net = "tcp"
+ }
}
done := make(chan string, N*M)
addr, sock, srvWG := startServer(net, "", done)