blob: 7aaef4a37d93783a99a66fd3ea3e86ebfee4c7e8 [file] [log] [blame]
Going from a passing test to a failing test in a subdir is a regression
-- foo/p_test.go --
package p
import "testing"
func TestP(t *testing.T) {
}
-- .commit --
Initial commit with passing test
-- foo/p_test.go --
package p
import "testing"
func TestP(t *testing.T) {
t.FailNow()
}
-- .commit --
Break test
-- .run_test --
# Errors
Test regressions detected between initial commit (INITIAL_COMMIT_HASH) and HEAD:
1: sketch.dev/foo.TestP: Was passing, now failing
Please fix before proceeding.