blob: b0cc9560d6c4679c69a6e50cb05171977c42014e [file] [log] [blame]
Josh Bleecher Snyder833a0f82025-04-24 18:39:36 +00001Adding failing tests 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 t.FailNow()
16}
17
18-- .commit --
19Add failing test
20
21-- .run_test --
22Test regressions detected between initial commit (cf75ed70e940ce33a17a70b1894ad053b67731c0) and HEAD:
23
241: sketch.dev.TestP: New test is failing
25
26
27Please fix before proceeding.