Skip to content

Commit 10577ac

Browse files
myitcvflimzy
authored andcommitted
Remove --bv flag on test
1 parent 17fb61e commit 10577ac

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

tool.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -317,14 +317,12 @@ func main() {
317317
run := cmdTest.Flags().String("run", "", "Run only those tests and examples matching the regular expression.")
318318
short := cmdTest.Flags().Bool("short", false, "Tell long-running tests to shorten their run time.")
319319
verbose := cmdTest.Flags().BoolP("verbose", "v", false, "Log all tests as they are run. Also print all text from Log and Logf calls even if the test succeeds.")
320-
buildVerbose := cmdTest.Flags().BoolP("bv", "", false, "Use a verbose build context.")
321320
compileOnly := cmdTest.Flags().BoolP("compileonly", "c", false, "Compile the test binary to pkg.test.js but do not run it (where pkg is the last element of the package's import path). The file name can be changed with the -o flag.")
322321
outputFilename := cmdTest.Flags().StringP("output", "o", "", "Compile the test binary to the named file. The test still runs (unless -c is specified).")
323322
parallelTests := cmdTest.Flags().IntP("parallel", "p", runtime.NumCPU(), "Allow running tests in parallel for up to -p packages. Tests within the same package are still executed sequentially.")
324323
cmdTest.Flags().AddFlagSet(compilerFlags)
325324
cmdTest.Run = func(cmd *cobra.Command, args []string) {
326325
options.BuildTags = strings.Fields(tags)
327-
options.Verbose = *buildVerbose
328326
err := func() error {
329327
// Expand import path patterns.
330328
patternContext := gbuild.NewBuildContext("", options.BuildTags)

0 commit comments

Comments
 (0)