blob: 2405c49f1a6dd1e2bef0e1d902a53286e6fe3ad4 [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 Snyder833a0f82025-04-24 18:39:36 +000024Test regressions detected between initial commit (cf75ed70e940ce33a17a70b1894ad053b67731c0) and HEAD:
25
261: sketch.dev: Previously had no tests, now has build/vet errors
27
28
29Please fix before proceeding.