aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/go/testdata/script/test_xtestonly_works.txt
blob: 8e150dbfc2571d685c3e9f5cee93dd8c190e710a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[short] skip

go test xtestonly
! stdout '^ok.*\[no tests to run\]'
stdout '^ok'

-- go.mod --
module xtestonly

go 1.16
-- f.go --
package xtestonly

func F() int { return 42 }
-- f_test.go --
package xtestonly_test

import (
	"testing"
	"xtestonly"
)

func TestF(t *testing.T) {
	if x := xtestonly.F(); x != 42 {
		t.Errorf("f.F() = %d, want 42", x)
	}
}