aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/go/testdata/script/test_match_no_subtests_failure.txt
blob: b3c5b92f5eadd50c83295a20d0642cab6b4a5cab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Matches no subtests, but parent test still fails
! go test -run TestThatFails/ThisWillNotMatch standalone_fail_sub_test.go
! stdout '^ok.*\[no tests to run\]'
! stderr '^ok.*\[no tests to run\]'
stdout 'FAIL'

-- standalone_fail_sub_test.go --
package standalone_fail_sub_test

import "testing"

func TestThatFails(t *testing.T) {
	t.Run("Sub", func(t *testing.T) {})
	t.Fail()
}