Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestParallelFailingB (0.12 sec)

  1. src/cmd/go/testdata/script/test_fail_fast.txt

    	// Edge-case testing, mixing unparallel tests too
    	t.Logf("LOG: %s", t.Name())
    }
    
    func TestParallelFailingA(t *testing.T) {
    	t.Parallel()
    	t.Errorf("FAIL - %s", t.Name())
    }
    
    func TestParallelFailingB(t *testing.T) {
    	t.Parallel()
    	t.Errorf("FAIL - %s", t.Name())
    }
    
    func TestParallelFailingSubtestsA(t *testing.T) {
    	t.Parallel()
    	t.Run("TestFailingSubtestsA1", func(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 19:25:24 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top