Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for initFuzzFlags (0.34 sec)

  1. src/testing/fuzz.go

    // license that can be found in the LICENSE file.
    
    package testing
    
    import (
    	"errors"
    	"flag"
    	"fmt"
    	"io"
    	"os"
    	"path/filepath"
    	"reflect"
    	"runtime"
    	"strings"
    	"time"
    )
    
    func initFuzzFlags() {
    	matchFuzz = flag.String("test.fuzz", "", "run the fuzz test matching `regexp`")
    	flag.Var(&fuzzDuration, "test.fuzztime", "time to spend fuzzing; default is to run indefinitely")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  2. src/testing/testing.go

    	shuffle = flag.String("test.shuffle", "off", "randomize the execution order of tests and benchmarks")
    	fullPath = flag.Bool("test.fullpath", false, "show full file names in error messages")
    
    	initBenchmarkFlags()
    	initFuzzFlags()
    }
    
    var (
    	// Flags, registered during Init.
    	short                *bool
    	failFast             *bool
    	outputDir            *string
    	chatty               chattyFlag
    	count                *uint
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
Back to top