blob: eea1b590b4817e498b08b73f2b3f8e37b4dda3a4 [file] [log] [blame]
Josh Bleecher Snyder833a0f82025-04-24 18:39:36 +00001Going from failing tests to failing tests is not a regression
2
3-- p_test.go --
4package p
5
6import "testing"
7
8func TestX(t *testing.T) {
9 t.FailNow()
10}
11
12-- .commit --
13Initial commit (with failing test)
14
15-- p_test.go --
16package p
17
18import "testing"
19
20func TestX(t *testing.T) {
21 t.FailNow()
22}
23
24-- .commit --
25Test still failing
26
27-- .run_test --
28OK