Commit 0f3c2290 authored by Dan Peterson's avatar Dan Peterson Committed by Brad Fitzpatrick

runtime: fix sigaltstack test Skipf format string

Change-Id: I9485ecbd9d546893e4f0db846b08d835fa7515d7
Reviewed-on: https://go-review.googlesource.com/18140Reviewed-by: default avatarBrad Fitzpatrick <bradfitz@golang.org>
parent f7e51c13
...@@ -56,7 +56,7 @@ import ( ...@@ -56,7 +56,7 @@ import (
func testSigaltstack(t *testing.T) { func testSigaltstack(t *testing.T) {
switch { switch {
case runtime.GOOS == "solaris", runtime.GOOS == "darwin" && (runtime.GOARCH == "arm" || runtime.GOARCH == "arm64"): case runtime.GOOS == "solaris", runtime.GOOS == "darwin" && (runtime.GOARCH == "arm" || runtime.GOARCH == "arm64"):
t.Skipf("switching signal stack not implemented on %s/s", runtime.GOOS, runtime.GOARCH) t.Skipf("switching signal stack not implemented on %s/%s", runtime.GOOS, runtime.GOARCH)
} }
C.changeSignalStack() C.changeSignalStack()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment