Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for XTestGoFiles (0.2 sec)

  1. src/go/build/build.go

    	BinaryOnly    bool     // cannot be rebuilt from source (has //go:binary-only-package comment)
    
    	// Source files
    	GoFiles           []string // .go source files (excluding CgoFiles, TestGoFiles, XTestGoFiles)
    	CgoFiles          []string // .go source files that import "C"
    	IgnoredGoFiles    []string // .go source files ignored for this build (including ignored _test.go files)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  2. src/cmd/go/internal/test/test.go

    			// later package. Note that if -coverpkg is in effect
    			// p.Internal.Cover.GenMeta will wind up being set for
    			// all matching packages.
    			if len(p.TestGoFiles)+len(p.XTestGoFiles) == 0 &&
    				cfg.BuildCoverPkg == nil &&
    				cfg.Experiment.CoverageRedesign {
    				p.Internal.Cover.GenMeta = true
    			}
    		}
    	}
    
    	// Prepare build + run + print actions for all packages being tested.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  3. src/cmd/dist/test.go

    		cmd := exec.Command(gorootBinGo, "list")
    		if t.short {
    			// In short test mode, use a format string to only
    			// list packages and commands that have tests.
    			const format = "{{if (or .TestGoFiles .XTestGoFiles)}}{{.ImportPath}}{{end}}"
    			cmd.Args = append(cmd.Args, "-f", format)
    		}
    		if t.race {
    			cmd.Args = append(cmd.Args, "-tags=race")
    		}
    		cmd.Args = append(cmd.Args, "std", "cmd")
    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