summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xdebuginfo-tests/test_debuginfo.pl3
1 files changed, 2 insertions, 1 deletions
diff --git a/debuginfo-tests/test_debuginfo.pl b/debuginfo-tests/test_debuginfo.pl
index adc11c39d99..e4c2a5ea24c 100755
--- a/debuginfo-tests/test_debuginfo.pl
+++ b/debuginfo-tests/test_debuginfo.pl
@@ -56,7 +56,8 @@ my $my_debugger = $ENV{'DEBUGGER'};
if (!$my_debugger) {
if ($use_lldb) {
my $path = dirname(Cwd::abs_path($0));
- $my_debugger = "/usr/bin/env python $path/llgdb.py";
+ # At least on darwin, LLDB needs te system python.
+ $my_debugger = "/usr/bin/python $path/llgdb.py";
} else {
$my_debugger = "gdb";
}
OpenPOWER on IntegriCloud