...

Text file src/cmd/go/testdata/script/tool_name.txt

Documentation: cmd/go/testdata/script

     1[short] skip 'runs go build'
     2
     3# Tool name can't be empty. Issue #74757.
     4! go tool ''
     5stderr 'go: no such tool ""'
     6
     7! go tool -n ''
     8stderr 'go: no such tool ""'
     9
    10# Invalid tool name
    11! go tool @
    12stderr 'go: no such tool "@"'
    13
    14! go tool -n @
    15stderr 'go: no such tool "@"'
    16
    17-- go.mod --
    18module example.com/foo
    19
    20go 1.24
    21-- main.go --
    22package main

View as plain text