blob: 7a9166d81587a017a5c6ce361091e89805e1f623 [file] [log] [blame]
Josh Bleecher Snyder833a0f82025-04-24 18:39:36 +00001Adding a new test with build errors is a regression
2
3-- p.go --
4package p
5
6-- .commit --
7Initial commit with no tests
8
9-- p_test.go --
10package p
11
12import "testing"
13
14func TestP(t *testing.T) {
15 (
16}
17
18-- .commit --
19Add test with build error
20
21-- .run_test --
Josh Bleecher Snyderffecb1e2025-04-28 18:59:14 +000022# Errors
23
Josh Bleecher Snyder2fde4652025-05-01 17:50:34 -070024Test regressions detected between initial commit (INITIAL_COMMIT_HASH) and HEAD:
Josh Bleecher Snyder833a0f82025-04-24 18:39:36 +000025
261: sketch.dev: Previously had no tests, now has build/vet errors
27
28
29Please fix before proceeding.