Regression for gdb.base/solib-disc.exp [Re: Regression for gdb.mi/mi-nsmoribund.exp]
Tom Tromey
tromey@redhat.com
Wed Jan 25 17:09:00 GMT 2012
>>>>> "Jan" == Jan Kratochvil <jan.kratochvil@redhat.com> writes:
Jan> And with gdbserver it is regressing:
Jan> -PASS: gdb.base/solib-disc.exp: continue to load
Jan> +FAIL: gdb.base/solib-disc.exp: continue to load
Jan> -PASS: gdb.base/solib-disc.exp: continue to unload
Jan> +FAIL: gdb.base/solib-disc.exp: continue to unload
Here is the patch I am checking in.
The problem was just that the regexps needed updating.
Jan> I cannot evaluate the full testsuite results these days due to pending:
Jan> Performance regression (12x): Re: RFC: add relative file name
Jan> handling for linespecs
Jan> http://sourceware.org/ml/gdb-patches/2012-01/msg00697.html
This is next on my list.
Tom
2012-01-25 Tom Tromey <tromey@redhat.com>
* gdb.base/solib-disc.exp: Fix regexps.
diff --git a/gdb/testsuite/gdb.base/solib-disc.exp b/gdb/testsuite/gdb.base/solib-disc.exp
index e0d4875..0b1e9e7 100644
--- a/gdb/testsuite/gdb.base/solib-disc.exp
+++ b/gdb/testsuite/gdb.base/solib-disc.exp
@@ -62,7 +62,7 @@ if ![runto_main] then {
gdb_test_no_output "set stop-on-solib-events 1"
-gdb_test "continue" "Stopped due to shared library event" "continue to load"
+gdb_test "continue" "Stopped due to shared library event.*" "continue to load"
set msg "save \$pc after load"
set saved_pc ""
@@ -84,7 +84,7 @@ if { [gdb_reconnect] == 0 } {
gdb_test "print/x \$pc" "\\\$$decimal = $saved_pc" "check \$pc after load"
-gdb_test "continue" "Stopped due to shared library event" "continue to unload"
+gdb_test "continue" "Stopped due to shared library event.*" "continue to unload"
set msg "save \$pc after unload"
set saved_pc ""
More information about the Gdb-patches
mailing list