Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for checkLldbPython (0.15 sec)

  1. src/runtime/runtime-lldb_test.go

    package runtime_test
    
    import (
    	"internal/testenv"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"runtime"
    	"strings"
    	"testing"
    )
    
    var lldbPath string
    
    func checkLldbPython(t *testing.T) {
    	cmd := exec.Command("lldb", "-P")
    	out, err := cmd.CombinedOutput()
    	if err != nil {
    		t.Skipf("skipping due to issue running lldb: %v\n%s", err, out)
    	}
    	lldbPath = strings.TrimSpace(string(out))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top