blob: 671b53be1d3a2eb29edaa947f1e6e73f4043e97c [file] [log] [blame]
Going from a skipped test to a test with build errors is a regression
-- p_test.go --
package p
import "testing"
func TestP(t *testing.T) {
t.SkipNow()
}
-- .commit --
Initial commit with skipped test
-- p_test.go --
package p
import "testing"
func TestP(t *testing.T) {
(
}
-- .commit --
Change skipped test to test with build error
-- .run_test --
# Errors
Test regressions detected between initial commit (3635353dfefb2fa652728318567209ccfc4aba42) and HEAD:
1: sketch.dev: Was passing, now has build/vet errors
Please fix before proceeding.