Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for checkGdbEnvironment (0.22 sec)

  1. src/runtime/runtime-gdb_test.go

    // Some runtime tests send SIGWINCH to the entire process group, so those tests
    // must never run in parallel with GDB tests.
    //
    // See issue 39021 and https://sourceware.org/bugzilla/show_bug.cgi?id=26056.
    
    func checkGdbEnvironment(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    	switch runtime.GOOS {
    	case "darwin":
    		t.Skip("gdb does not work on darwin")
    	case "netbsd":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  2. src/runtime/runtime-gdb_unix_test.go

    		// TODO(go.dev/issue/25218): Other architectures use sigreturn
    		// via VDSO, which we somehow don't handle correctly.
    		t.Skip("Backtrace through signal handler only works on 386 and amd64")
    	}
    
    	checkGdbEnvironment(t)
    	t.Parallel()
    	checkGdbVersion(t)
    
    	coreUsesPID := canGenerateCore(t)
    
    	// Build the source code.
    	dir := t.TempDir()
    	src := filepath.Join(dir, "main.go")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 17 19:05:30 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top