Sign in
go
/
go
/
701f6a27b5c2499c1e84c28a3761eb2f1bf6fd7e
/
.
/
src
/
cmd
/
go
/
testdata
/
script
/
test_devnull.txt
blob: c414e59ba3a9c7c222950aa44db74df61dfc4f67 [
file
] [
log
] [
blame
]
# go test -c -o NUL
# should work (see golang.org/issue/28035).
cd x
go test -o=$devnull -c
! exists x.test$exe
-- x/x_test.go --
package x_test
import (
"testing"
)
func TestNUL(t *testing.T) {
}