diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2021-04-22 15:45:34 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2021-04-22 15:45:34 -0400 |
commit | a87caa6d523e573ab71694233a7501c6b5b5b9f7 (patch) | |
tree | 38706503a4f60a1ffce11bd0872ac9462492a03e | |
parent | e25d6d93c4a0d597da2521c2c38cb1ce6e51feb8 (diff) | |
download | gdb-a87caa6d523e573ab71694233a7501c6b5b5b9f7.zip gdb-a87caa6d523e573ab71694233a7501c6b5b5b9f7.tar.gz gdb-a87caa6d523e573ab71694233a7501c6b5b5b9f7.tar.bz2 |
gdb/testsuite: add Python support check in gdb.python/flexible-array-member.exp
We don't want to execute this test if Python support is not compiled in
GDB, add the necessary check.
gdb/testsuite/ChangeLog:
* gdb.python/flexible-array-member.exp: Add check for Python
support.
Change-Id: I853b937d2a193a0bb216566bef1a35354264b1c5
-rw-r--r-- | gdb/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/testsuite/gdb.python/flexible-array-member.exp | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 9730658..266645b 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,5 +1,10 @@ 2021-04-22 Simon Marchi <simon.marchi@polymtl.ca> + * gdb.python/flexible-array-member.exp: Add check for Python + support. + +2021-04-22 Simon Marchi <simon.marchi@polymtl.ca> + PR gdb/27757 * gdb.python/flexible-array-member.c: New test. * gdb.python/flexible-array-member.exp: New test. diff --git a/gdb/testsuite/gdb.python/flexible-array-member.exp b/gdb/testsuite/gdb.python/flexible-array-member.exp index 3739c9a..349670c 100644 --- a/gdb/testsuite/gdb.python/flexible-array-member.exp +++ b/gdb/testsuite/gdb.python/flexible-array-member.exp @@ -22,6 +22,9 @@ if { [prepare_for_testing "failed to prepare" \ return } +# Skip all tests if Python scripting is not enabled. +if { [skip_python_tests] } { continue } + if { ![runto break_here] } { untested "could not run to break_here" return |