aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/compile/internal/test/fixedbugs_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmd/compile/internal/test/fixedbugs_test.go')
-rw-r--r--src/cmd/compile/internal/test/fixedbugs_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/compile/internal/test/fixedbugs_test.go b/src/cmd/compile/internal/test/fixedbugs_test.go
index e7e2f7e58e..376b45edfc 100644
--- a/src/cmd/compile/internal/test/fixedbugs_test.go
+++ b/src/cmd/compile/internal/test/fixedbugs_test.go
@@ -75,7 +75,7 @@ func TestIssue16214(t *testing.T) {
cmd := exec.Command(testenv.GoToolPath(t), "tool", "compile", "-S", "-o", filepath.Join(dir, "out.o"), src)
out, err := cmd.CombinedOutput()
if err != nil {
- t.Fatalf("fail to run go tool compile: %v", err)
+ t.Fatalf("go tool compile: %v\n%s", err, out)
}
if strings.Contains(string(out), "unknown line number") {