blob: dba6df26888e3fedfbe5b1ce97f5fc6a42c92770 [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 --
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 skipped
27
28
29Please fix before proceeding.