python-embedded-interpreter: fix line breakpoint

Breaking in line 9 was actually out of main() context
which might cause issues. Corrected to point to line 8
This commit is contained in:
Jesus Checa Hidalgo 2022-07-15 12:30:16 +02:00
commit fc28d8cd09

View file

@ -6,7 +6,7 @@ rpm -q --requires "$LLDB_PACKAGE" | grep python3-lldb
# Sanity test
g++ -g test.cpp
lldb -b -o 'breakpoint set --file test.cpp --line 9' \
lldb -b -o 'breakpoint set --file test.cpp --line 8' \
-o run -o 'p i' -o 'p f'\
-- a.out | tee lldb.log