# Functions
Pass the remainder of the command line (everything after -args) to the test binary, uninterpreted and unchanged.
value '[pattern=]arg list' arguments to pass on each go tool asm invocation.
build mode to use.
Compile the test binary to pkg.test but do not run it (where pkg is the last element of the package's import path).
name of compiler to use, as in runtime.Compiler (gccgo or gc).
enable interoperation with memory sanitizer.
By default, 'go run' runs the compiled binary directly: 'a.out arguments...'.
force rebuilding of packages that are already up-to-date.
value '[pattern=]arg list' arguments to pass on each go tool compile invocation.
value '[pattern=]arg list' arguments to pass on each gccgo compiler/linker invocation.
Install packages that are dependencies of the test.
a suffix to use in the name of the package installation directory, in order to keep output separate from default builds.
Convert test output to JSON suitable for automated processing.
value '[pattern=]arg list' arguments to pass on each go tool link invocation.
build code that will be linked against shared libraries previously created with -buildmode=shared.
module download mode to use: readonly, vendor, or mod.
leave newly-created directories in the module cache read-write instead of making them read-only.
in module aware mode, read (and possibly write) an alternate go.mod file instead of the one in the module root directory.
Compile the test binary to the named file.
install and load all packages from dir instead of the usual locations.
print the commands.
print the commands but do not run them.
enable data race detection.
No description provided by the author
No description provided by the author
a comma-separated list of build tags to consider satisfied during the build.
'Go test' automates testing the packages named by the import paths.
a program to use to invoke toolchain programs like vet and asm.
remove all file system paths from the resulting executable.
print the names of packages as they are compiled.
print the name of the temporary work directory and do not delete it when exiting.
the number of programs, such as build commands or test binaries, that can be run in parallel.
# Type aliases
No description provided by the author