blob: 17f5168c490fa51437112c379cf0332ed766ccf9 [file] [log] [blame]
Josh Bleecher Snyder833a0f82025-04-24 18:39:36 +00001Marking a passing test as skipped test is a regression
2
3-- p_test.go --
4package p
5
6import "testing"
7
8func TestP(t *testing.T) {
9}
10
11-- .commit --
12Initial commit
13
14-- p_test.go --
15package p
16
17import "testing"
18
19func TestP(t *testing.T) {
20 t.SkipNow()
21}
22
23-- .commit --
24Skip test
25
26-- .run_test --
Josh Bleecher Snyderffecb1e2025-04-28 18:59:14 +000027# Errors
28
Josh Bleecher Snyder2fde4652025-05-01 17:50:34 -070029Test regressions detected between initial commit (INITIAL_COMMIT_HASH) and HEAD:
Josh Bleecher Snyder833a0f82025-04-24 18:39:36 +000030
311: sketch.dev.TestP: Was passing, now skipped
32
33
34Please fix before proceeding.