Skip gdb.mi/list-thread-groups-available.exp if no xml support

I see the following test fail in gdb (configured --with-expat=no),

-list-thread-groups --available^M
&"warning: Can not parse XML OS data; XML support was disabled at compile time\n"^M
^error,msg="Can not fetch data now."^M
(gdb) ^M
FAIL: gdb.mi/list-thread-groups-available.exp: list available thread groups (unexpected output)

This patch skips it if XML parsing in GDB is disabled, like what you did
in gdb.mi/mi-info-os.exp.

gdb/testsuite:

2017-11-03  Yao Qi  <yao.qi@linaro.org>

	* gdb.mi/list-thread-groups-available.exp: Skip it if XML parsing
	in GDB is disabled.
This commit is contained in:
Yao Qi
2017-11-03 12:53:53 +00:00
parent 6cee897971
commit 50ab6ace38
2 changed files with 11 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2017-11-03 Yao Qi <yao.qi@linaro.org>
* gdb.mi/list-thread-groups-available.exp: Skip it if XML parsing
in GDB is disabled.
2017-11-03 Yao Qi <yao.qi@linaro.org> 2017-11-03 Yao Qi <yao.qi@linaro.org>
* gdb.python/py-thrhandle.exp: Skip it if python is not * gdb.python/py-thrhandle.exp: Skip it if python is not

View File

@ -20,6 +20,12 @@ set MIFLAGS "-i=mi"
standard_testfile standard_testfile
# Support for XML is needed to run this test.
if [gdb_skip_xml_test] then {
unsupported "list-thread-groups-available.exp"
return -1
}
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } { if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
untested "failed to compile" untested "failed to compile"
return -1 return -1