Skip to content

Commit bbea227

Browse files
committed
fix skipif
Signed-off-by: Jade Abraham <jade.abraham@hpe.com>
1 parent b551bb2 commit bbea227

File tree

1 file changed

+1
-1
lines changed
  • test/llvm/debugInfo/lldb

1 file changed

+1
-1
lines changed

test/llvm/debugInfo/lldb/SKIPIF

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ if command -v lldb >/dev/null ; then
55
# Sept 10, 2025: skip if lldb does not have python support
66
# required for pretty printing which affects the output of the tests
77
python_path=$(lldb --python-path 2>/dev/null)
8-
if [ -z "$python_path" ]; then
8+
if [[ -z "$python_path" || ! -x "$python_path" ]]; then
99
echo "True"
1010
else
1111
echo "False"

0 commit comments

Comments
 (0)