blob: 4bd864292e55f1a8d7e1652a7fb7e249e1793c44 [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 Snyder2fde4652025-05-01 17:50:34 -070030Test regressions detected between initial commit (INITIAL_COMMIT_HASH) and HEAD:
Josh Bleecher Snyder833a0f82025-04-24 18:39:36 +000031
321: sketch.dev: Was passing, now has build/vet errors
33
34
35Please fix before proceeding.