aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/crash_cgo_test.go
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2017-12-13 14:57:44 -0500
committerRuss Cox <rsc@golang.org>2017-12-13 21:31:45 +0000
commitde14b2f63891213d99e950809503569f1fa9e45b (patch)
tree1237546c2fdca7212d2bfe007f65a9bf9117678b /src/runtime/crash_cgo_test.go
parente7f95b3ccabef26cc662d9dbfaf5e38a866a86f9 (diff)
downloadgo-de14b2f63891213d99e950809503569f1fa9e45b.tar.gz
go-de14b2f63891213d99e950809503569f1fa9e45b.zip
all: fix t.Skipf formats
Found by upcoming cmd/vet change. Change-Id: I7a8264a304b2a4f26f3bd418c1b28cc849889c9b Reviewed-on: https://go-review.googlesource.com/83835 Run-TryBot: Russ Cox <rsc@golang.org> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
Diffstat (limited to 'src/runtime/crash_cgo_test.go')
-rw-r--r--src/runtime/crash_cgo_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/crash_cgo_test.go b/src/runtime/crash_cgo_test.go
index 50b634dda4..8993a75ad3 100644
--- a/src/runtime/crash_cgo_test.go
+++ b/src/runtime/crash_cgo_test.go
@@ -472,7 +472,7 @@ func TestWindowsStackMemoryCgo(t *testing.T) {
func TestSigStackSwapping(t *testing.T) {
switch runtime.GOOS {
case "plan9", "windows":
- t.Skip("no sigaltstack on %s", runtime.GOOS)
+ t.Skipf("no sigaltstack on %s", runtime.GOOS)
}
t.Parallel()
got := runTestProg(t, "testprogcgo", "SigStack")