Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for GO_TEST_SHORT (0.33 sec)

  1. src/run.bash

    #
    # GO_BUILDER_NAME: the name of the Go builder that's running the tests.
    # Some tests are conditionally enabled or disabled based on the builder
    # name or the builder name being non-empty.
    #
    # GO_TEST_SHORT: if set to a non-empty, false-ish string, run tests in "-short=false" mode.
    # This environment variable is an internal implementation detail between the
    # Go build system (x/build) and cmd/dist for the purpose of longtest builders,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:02:23 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. src/cmd/internal/moddeps/moddeps_test.go

    	// GOMODCACHE. If the default directory doesn't exist, use a temporary
    	// directory instead. (That can occur, for example, when running under
    	// run.bash with GO_TEST_SHORT=0: run.bash sets GOPATH=/nonexist-gopath, and
    	// GO_TEST_SHORT=0 causes it to run this portion of the test.)
    	var modcacheEnv []string
    	{
    		out, err := testenv.Command(t, goBin, "env", "GOMODCACHE").Output()
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  3. src/cmd/dist/test.go

    	os.Setenv("PATH", fmt.Sprintf("%s%c%s", gorootBin, os.PathListSeparator, os.Getenv("PATH")))
    
    	t.short = true
    	if v := os.Getenv("GO_TEST_SHORT"); v != "" {
    		short, err := strconv.ParseBool(v)
    		if err != nil {
    			fatalf("invalid GO_TEST_SHORT %q: %v", v, err)
    		}
    		t.short = short
    	}
    
    	cmd := exec.Command(gorootBinGo, "env", "CGO_ENABLED")
    	cmd.Stderr = new(bytes.Buffer)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
Back to top