blob: 95000cc11bfcfa13fb4034a2fb7a6b1e8b52eb5f [file] [log] [blame]
Josh Bleecher Snyder833a0f82025-04-24 18:39:36 +00001Adding a skipped test is a regression
2
3-- p_test.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.SkipNow()
16}
17
18-- .commit --
19Add skipped test
20
21-- .run_test --
22Test regressions detected between initial commit (2cdfdc5009e364add9a263909472f85eb08480ed) and HEAD:
23
241: sketch.dev.TestP: New test is skipped
25
26
27Please fix before proceeding.