[gdb/testsuite] Fix gdb.arch/i386-mpx.exp
authorTom de Vries <tdevries@suse.de>
Mon, 18 Jul 2022 03:54:14 +0000 (05:54 +0200)
committerTom de Vries <tdevries@suse.de>
Mon, 18 Jul 2022 03:54:14 +0000 (05:54 +0200)
Since commit c4a3dbaf113 ("Expose current 'print' settings to Python") we
have:
...
(gdb) print /x $bnd0 = {0x10, 0x20}^M
$22 = {lbound = 0x10, ubound = 0x20} : size 0x11^M
(gdb) FAIL: gdb.arch/i386-mpx.exp: verify size for bnd0
...

The regexp in the test-case expects "size 17".

Fix this by updating the regexp.

Tested on x86_64-linux.

gdb/testsuite/gdb.arch/i386-mpx.exp

index 336c0464833e382d85554f605f816c56a1938630..0de86ba0237a5655acc63467c666fbc8bca055a6 100644 (file)
@@ -132,5 +132,5 @@ after a failure on allocating an entry"
 # Going to test the python extension for lenght.
 if { [skip_python_tests] } { continue }
 # Verify if size is right
-set test_string ".*\\\: size 17.*"
+set test_string ".*\\\: size 0x11.*"
 gdb_test "print /x \$bnd0 = {0x10, 0x20}" "$test_string" "verify size for bnd0"