Your IP : 172.28.240.42


Current Path : /usr/local/go/src/cmd/go/testdata/script/
Upload File :
Current File : //usr/local/go/src/cmd/go/testdata/script/test_fullpath.txt

[short] skip

# test with -fullpath
! go test ./x/... -fullpath
stdout '^ +.+/gopath/src/x/fullpath/fullpath_test.go:8: test failed'
# test without -fullpath
! go test ./x/...
stdout '^ +fullpath_test.go:8: test failed'

-- go.mod --
module example
-- x/fullpath/fullpath_test.go --
package fullpath_test

import (
	"testing"
)

func TestFullPath(t *testing.T) {
	t.Error("test failed")
}