blob: 255f26d2ad004f3c25b6a17fa1a34888b471ad08 [file] [log] [blame]
Josh Bleecher Snyder833a0f82025-04-24 18:39:36 +00001Going from a passing 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}
10
11-- .commit --
12Initial commit with passing test
13
14-- p_test.go --
15package p
16
17import "testing"
18
19func TestP(t *testing.T) {
20 (
21}
22
23-- .commit --
24Break test with build error
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: Was passing, now has build/vet errors
32
33
34Please fix before proceeding.