blob: 2fe1d34da228836e4a93003e549977e817df0975 [file] [log] [blame]
Josh Bleecher Snyder833a0f82025-04-24 18:39:36 +00001Adding a new test with build errors is a regression
2
3-- p.go --
4package p
5
6-- .commit --
7Initial commit with no tests
8
9-- p_test.go --
10package p
11
12import "testing"
13
14func TestP(t *testing.T) {
15 (
16}
17
18-- .commit --
19Add test with build error
20
21-- .run_test --
22Test regressions detected between initial commit (cf75ed70e940ce33a17a70b1894ad053b67731c0) and HEAD:
23
241: sketch.dev: Previously had no tests, now has build/vet errors
25
26
27Please fix before proceeding.