+2020-03-11 Tom de Vries <tdevries@suse.de>
+
+ * gdb.base/foll-fork.exp: Allow "Reading in symbols" messages.
+
2020-03-11 Tom de Vries <tdevries@suse.de>
* gdb.base/break-interp.exp: Limit verbose scope.
}
}
+set reading_in_symbols_re {(?:\r\nReading in symbols for [^\r\n]*)?}
+
proc catch_fork_child_follow {} {
global gdb_prompt
global srcfile
+ global reading_in_symbols_re
set bp_after_fork [gdb_get_line_number "set breakpoint here"]
- gdb_test "catch fork" "Catchpoint \[0-9\]* \\(fork\\)" \
+ gdb_test "catch fork" \
+ "Catchpoint \[0-9\]* \\(fork\\)$reading_in_symbols_re" \
"explicit child follow, set catch fork"
# Verify that the catchpoint is mentioned in an "info breakpoints",
proc tcatch_fork_parent_follow {} {
global gdb_prompt
global srcfile
+ global reading_in_symbols_re
set bp_after_fork [gdb_get_line_number "set breakpoint here"]
- gdb_test "catch fork" "Catchpoint \[0-9\]* \\(fork\\)" \
+ gdb_test "catch fork" \
+ "Catchpoint \[0-9\]* \\(fork\\)$reading_in_symbols_re" \
"explicit parent follow, set tcatch fork"
# ??rehrauer: I don't yet know how to get the id of the tcatch