blob: 671b53be1d3a2eb29edaa947f1e6e73f4043e97c [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 --
Josh Bleecher Snyderffecb1e2025-04-28 18:59:14 +000028# Errors
29
Josh Bleecher Snyder833a0f82025-04-24 18:39:36 +000030Test regressions detected between initial commit (3635353dfefb2fa652728318567209ccfc4aba42) and HEAD:
31
321: sketch.dev: Was passing, now has build/vet errors
33
34
35Please fix before proceeding.