blob: b15c1791c2b65f06ff063235187952ddc741d063 [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 --
Josh Bleecher Snyderffecb1e2025-04-28 18:59:14 +000022# Errors
23
Josh Bleecher Snyder2fde4652025-05-01 17:50:34 -070024Test regressions detected between initial commit (INITIAL_COMMIT_HASH) and HEAD:
Josh Bleecher Snyder833a0f82025-04-24 18:39:36 +000025
261: sketch.dev.TestP: New test is failing
27
28
29Please fix before proceeding.