Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testnocgo (0.14 sec)

  1. src/cmd/dist/test.go

    				// TODO(#56629): Why does this fail on netbsd-arm?
    				cgoTest("static", "testtls", "external", "static", staticCheck)
    			}
    			cgoTest("external", "testnocgo", "external", "", staticCheck)
    			if goos != "android" {
    				cgoTest("static", "testnocgo", "external", "static", staticCheck)
    				cgoTest("static", "test", "external", "static", staticCheck)
    				// -static in CGO_LDFLAGS triggers a different code path
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/build_pgo_auto_multi.txt

    func TestB(*testing.T) {}
    -- b/default.pgo --
    -- nopgo/nopgo.go --
    package main
    import _ "test/dep"
    import _ "test/dep2"
    func main() {}
    -- nopgo/nopgo_test.go --
    package main
    import "testing"
    func TestNopgo(*testing.T) {}
    -- dep/dep.go --
    package dep
    import _ "test/dep3"
    -- dep2/dep2.go --
    package dep2
    -- dep3/dep3.go --
    package dep3
    -- testdep/testdep.go --
    package testdep
    import _ "test/testdep2"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:38:19 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top