blob: f648572bb637de106731018d68964e9e8351e01c [file] [log] [blame]
Josh Bleecher Snyder833a0f82025-04-24 18:39:36 +00001Going from a skipped test to a test with build errors is a regression
2
3-- p_test.go --
4package p
5
6import "testing"
7
8func TestP(t *testing.T) {
9 t.SkipNow()
10}
11
12-- .commit --
13Initial commit with skipped test
14
15-- p_test.go --
16package p
17
18import "testing"
19
20func TestP(t *testing.T) {
21 (
22}
23
24-- .commit --
25Change skipped test to test with build error
26
27-- .run_test --
28Test regressions detected between initial commit (3635353dfefb2fa652728318567209ccfc4aba42) and HEAD:
29
301: sketch.dev: Was passing, now has build/vet errors
31
32
33Please fix before proceeding.