Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for CMDCOVDATA_TEST_RUN_MAIN (0.42 sec)

  1. src/cmd/covdata/tool_test.go

    // the cmd/go tests.
    func TestMain(m *testing.M) {
    	// When CMDCOVDATA_TEST_RUN_MAIN is set, we're reusing the test
    	// binary as cmd/cover. In this case we run the main func exported
    	// via export_test.go, and exit; CMDCOVDATA_TEST_RUN_MAIN is set below
    	// for actual test invocations.
    	if os.Getenv("CMDCOVDATA_TEST_RUN_MAIN") != "" {
    		cmdcovdata.Main()
    		os.Exit(0)
    	}
    	flag.Parse()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 24.5K bytes
    - Viewed (0)
Back to top