Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testexithooks (0.2 sec)

  1. src/runtime/testdata/testexithooks/testexithooks.go

    Russ Cox <******@****.***> 1716557625 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. src/runtime/ehooks_test.go

    // license that can be found in the LICENSE file.
    
    package runtime_test
    
    import (
    	"internal/platform"
    	"internal/testenv"
    	"os/exec"
    	"runtime"
    	"strings"
    	"testing"
    )
    
    func TestExitHooks(t *testing.T) {
    	bmodes := []string{""}
    	if testing.Short() {
    		t.Skip("skipping due to -short")
    	}
    	// Note the HasCGO() test below; this is to prevent the test
    	// running if CGO_ENABLED=0 is in effect.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top