Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for BuildTest (0.16 sec)

  1. src/cmd/compile/internal/ssa/compile.go

    // Run consistency checker between each phase
    var (
    	checkEnabled  = false
    	checkRandSeed = 0
    )
    
    // Debug output
    var IntrinsicsDebug int
    var IntrinsicsDisable bool
    
    var BuildDebug int
    var BuildTest int
    var BuildStats int
    var BuildDump map[string]bool = make(map[string]bool) // names of functions to dump after initial build of ssa
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/test/test.go

    	// only report build errors once. Issue #44624.
    	if imported && ptest != p {
    		buildTest := b.CompileAction(work.ModeBuild, work.ModeBuild, ptest)
    		buildP := b.CompileAction(work.ModeBuild, work.ModeBuild, p)
    		buildTest.Deps = append(buildTest.Deps, buildP)
    	}
    
    	testBinary := testBinaryName(p)
    
    	testDir := b.NewObjdir()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top