aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/compile/internal/syntax/error_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmd/compile/internal/syntax/error_test.go')
-rw-r--r--src/cmd/compile/internal/syntax/error_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cmd/compile/internal/syntax/error_test.go b/src/cmd/compile/internal/syntax/error_test.go
index 919667f1d3..e4bedf54fd 100644
--- a/src/cmd/compile/internal/syntax/error_test.go
+++ b/src/cmd/compile/internal/syntax/error_test.go
@@ -164,7 +164,7 @@ func testSyntaxErrors(t *testing.T, filename string) {
// we have a match - eliminate this error
delete(declared, pos)
} else {
- t.Errorf("%s: unexpected error: %s", orig, e.Msg)
+ t.Errorf("%s:%s: unexpected error: %s", filename, orig, e.Msg)
}
}, nil, mode)
@@ -175,7 +175,7 @@ func testSyntaxErrors(t *testing.T, filename string) {
// report expected but not reported errors
for pos, pattern := range declared {
- t.Errorf("%s: missing error: %s", pos, pattern)
+ t.Errorf("%s:%s: missing error: %s", filename, pos, pattern)
}
}