Commit 8f5755e7 authored by Tobias Klauser's avatar Tobias Klauser Committed by Tobias Klauser

runtime: gofmt after CL 192937

CL 192937 introduced some changes which weren't properly gofmt'ed. Do so
now.

Change-Id: I2d2d57ea8a79fb41bc4ca59fa23f12198d615fd8
Reviewed-on: https://go-review.googlesource.com/c/go/+/196812
Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com>
Reviewed-by: default avatarIan Lance Taylor <iant@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
parent 7fc2625e
...@@ -148,7 +148,7 @@ func TestVDSO(t *testing.T) { ...@@ -148,7 +148,7 @@ func TestVDSO(t *testing.T) {
output := runTestProg(t, "testprog", "SignalInVDSO") output := runTestProg(t, "testprog", "SignalInVDSO")
want := "success\n" want := "success\n"
if output != want { if output != want {
t.Fatalf("output:\n%s\n\nwanted:\n%s", output, want); t.Fatalf("output:\n%s\n\nwanted:\n%s", output, want)
} }
} }
......
...@@ -51,5 +51,5 @@ func signalInVDSO() { ...@@ -51,5 +51,5 @@ func signalInVDSO() {
os.Exit(2) os.Exit(2)
} }
fmt.Println("success"); fmt.Println("success")
} }
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