diff options
author | Tom de Vries <tdevries@suse.de> | 2024-09-08 07:46:09 +0200 |
---|---|---|
committer | Tom de Vries <tdevries@suse.de> | 2024-09-08 07:46:09 +0200 |
commit | 29c70787112e01cd52b53bf14bdcacb0a11e0725 (patch) | |
tree | d821c7a177e6892dbb0a111cca2f6af5532ec462 | |
parent | 7e4f57dc1bb29588b87fd38fcc5d9afd28eefeb0 (diff) | |
download | gdb-29c70787112e01cd52b53bf14bdcacb0a11e0725.zip gdb-29c70787112e01cd52b53bf14bdcacb0a11e0725.tar.gz gdb-29c70787112e01cd52b53bf14bdcacb0a11e0725.tar.bz2 |
[gdb/testsuite] Handle missing curses in gdb.python/py-missing-debug.exp
On a system with python 3.6, module gdb.missing_debug imports module curses,
so when running test-case gdb.python/py-missing-debug.exp on a system without
that module installed, we run into:
...
(gdb) source py-missing-debug.py^M
Python Exception <class 'ImportError'>: Module 'curses' is not installed.^M
Use:^M
sudo zypper install python36-curses^M
to install it.^M
Error occurred in Python: Module 'curses' is not installed.^M
Use:^M
sudo zypper install python36-curses^M
to install it.^M
(gdb) FAIL: gdb.python/py-missing-debug.exp: source python script
...
Fix this by issuing UNSUPPORTED instead, and bailing out.
Tested on x86_64-linux.
Approved-by: Kevin Buettner <kevinb@redhat.com>
PR testsuite/31576
Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=31576
-rw-r--r-- | gdb/testsuite/gdb.python/py-missing-debug.exp | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/gdb/testsuite/gdb.python/py-missing-debug.exp b/gdb/testsuite/gdb.python/py-missing-debug.exp index dfc0a46..9d853d3 100644 --- a/gdb/testsuite/gdb.python/py-missing-debug.exp +++ b/gdb/testsuite/gdb.python/py-missing-debug.exp @@ -58,8 +58,21 @@ with_test_prefix "initial checks" { } # Load the Python script into GDB. -gdb_test "source $remote_python_file" "^Success" \ - "source python script" +set python_script_loaded 0 +set re_no_curses [string_to_regexp "Module 'curses' is not installed."] +gdb_test_multiple "source $remote_python_file" "source python script" { + -re -wrap $re_no_curses.* { + unsupported $gdb_test_name + } + -re -wrap "^Success" { + set python_script_loaded 1 + pass $gdb_test_name + } +} + +if { ! $python_script_loaded } { + return +} # Setup the separate debug info directory. This isn't actually needed until # some of the later tests, but might as well get this done now. |