Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for svctest (0.1 sec)

  1. src/cmd/internal/testdir/testdir_test.go

    )
    
    // Test is the main entrypoint that runs tests in the GOROOT/test directory.
    //
    // Each .go file test case in GOROOT/test is registered as a subtest with a
    // a full name like "Test/fixedbugs/bug000.go" ('/'-separated relative path).
    func Test(t *testing.T) {
    	if *target != "" {
    		// When -target is set, propagate it to GOOS/GOARCH in our environment
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  2. src/runtime/pprof/pprof_test.go

    		ctx, cancel := context.WithCancel(ctx)
    		defer cancel()
    
    		ch := make(chan int)
    		defer close(ch)
    
    		var ready sync.WaitGroup
    
    		// These goroutines all survive until the end of the subtest, so we can
    		// check that a (numbered) goroutine appearing in the profile implies
    		// that all older goroutines also appear in the profile.
    		ready.Add(1)
    		done.Add(1)
    		go func() {
    			defer done.Done()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/test/test.go

    	-list regexp
    	    List tests, benchmarks, fuzz tests, or examples matching the regular
    	    expression. No tests, benchmarks, fuzz tests, or examples will be run.
    	    This will only list top-level tests. No subtest or subbenchmarks will be
    	    shown.
    
    	-parallel n
    	    Allow parallel execution of test functions that call t.Parallel, and
    	    fuzz targets that call t.Parallel when running the seed corpus.
    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