Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for runRxStr (0.09 sec)

  1. src/cmd/dist/test.go

    		if err != nil {
    			fatalf("failed to parse $GO_TEST_TIMEOUT_SCALE = %q as integer: %v", s, err)
    		}
    	}
    
    	if t.runRxStr != "" {
    		if t.runRxStr[0] == '!' {
    			t.runRxWant = false
    			t.runRxStr = t.runRxStr[1:]
    		} else {
    			t.runRxWant = true
    		}
    		t.runRx = regexp.MustCompile(t.runRxStr)
    	}
    
    	t.registerTests()
    	if t.listMode {
    		for _, tt := range t.tests {
    			fmt.Println(tt.name)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
Back to top