[2/5,gdb/testsuite] Fix some test-cases for check-read1 (pipe/grep)
Checks
Context |
Check |
Description |
linaro-tcwg-bot/tcwg_gdb_build--master-aarch64 |
success
|
Build passed
|
linaro-tcwg-bot/tcwg_gdb_build--master-arm |
success
|
Build passed
|
linaro-tcwg-bot/tcwg_gdb_check--master-arm |
success
|
Test passed
|
linaro-tcwg-bot/tcwg_gdb_check--master-aarch64 |
success
|
Test passed
|
Commit Message
I ran the testsuite in an environment simulating a stressed system in
combination with check-read1. This exposes a few more FAILs.
Fix some by using pipe / grep to filter out unnecessary output.
Tested on x86_64-linux.
---
.../gdb.base/breakpoint-in-ro-region.exp | 2 +-
gdb/testsuite/gdb.base/charset.exp | 17 ++++++++++++++---
gdb/testsuite/gdb.base/corefile.exp | 19 ++++++++++++-------
gdb/testsuite/gdb.base/osabi.exp | 3 ++-
.../gdb.base/sss-bp-on-user-bp-2.exp | 2 +-
gdb/testsuite/gdb.threads/corethreads.exp | 6 ++++--
6 files changed, 34 insertions(+), 15 deletions(-)
@@ -43,7 +43,7 @@ proc probe_target_hardware_step {} {
gdb_test_no_output "set debug target 1"
set test "probe target hardware step"
- gdb_test_multiple "si" $test {
+ gdb_test_multiple "pipe si | grep resume" $test {
-re "resume \\(\[^\r\n\]+, step, .*$gdb_prompt $" {
set hw_step 1
pass $test
@@ -87,9 +87,20 @@ if {[lsearch -exact $show_charset $show_host_charset] >= 0} {
}
# Try a malformed `set charset'.
-gdb_test "set charset" \
- "Requires an argument. Valid arguments are.*" \
- "try malformed `set charset'"
+set cmd "set charset"
+set ok 0
+gdb_test_multiple $cmd "try malformed `set charset'" {
+ -re "^$cmd\r\nRequires an argument. Valid arguments are " {
+ set ok 1
+ exp_continue
+ }
+ -re ", " {
+ exp_continue
+ }
+ -re -wrap "" {
+ gdb_assert { $ok } $gdb_test_name
+ }
+}
# Try using `set host-charset' on an invalid character set.
gdb_test "set host-charset my_grandma_bonnie" \
@@ -266,7 +266,10 @@ proc corefile_test_run {} {
clean_restart $::binfile
gdb_test "core-file $corefile" "Core was generated by .*" "run: load core again"
- gdb_test "info files" "\r\nLocal core dump file:\r\n.*" "run: sanity check we see the core file"
+ set re "Local core dump file:"
+ gdb_test "pipe info files | grep \"$re\"" \
+ "Local core dump file:" \
+ "run: sanity check we see the core file"
set test "run: with core"
if [runto_main] {
@@ -276,11 +279,12 @@ proc corefile_test_run {} {
}
set test "run: core file is cleared"
- gdb_test_multiple "info files" $test {
- -re "\r\nLocal core dump file:\r\n.*\r\n$gdb_prompt $" {
+ set re "Local core dump file:"
+ gdb_test_multiple "pipe info files | grep \"$re\"" $test {
+ -re -wrap $re {
fail $test
}
- -re "\r\n$gdb_prompt $" {
+ -re -wrap "" {
pass $test
}
}
@@ -349,11 +353,12 @@ proc corefile_test_attach {} {
gdb_test "attach $pid" "Attaching to process $pid\r\n.*" "attach: with core"
set test "attach: core file is cleared"
- gdb_test_multiple "info files" $test {
- -re "\r\nLocal core dump file:\r\n.*\r\n$gdb_prompt $" {
+ set re "Local core dump file:"
+ gdb_test_multiple "pipe info files | grep \"$re\"" $test {
+ -re -wrap $re {
fail $test
}
- -re "\r\n$gdb_prompt $" {
+ -re -wrap "" {
pass $test
}
}
@@ -24,7 +24,8 @@ require !gdb_debug_enabled
proc test_set_osabi_none { } {
clean_restart
gdb_test_no_output "set debug arch 1"
- gdb_test "set osabi none" ".*gdbarch_find_by_info: info.osabi 1 \\(none\\).*"
+ gdb_test "pipe set osabi none | grep gdbarch_find_by_info" \
+ ".*gdbarch_find_by_info: info.osabi 1 \\(none\\).*"
}
test_set_osabi_none
@@ -64,7 +64,7 @@ delete_breakpoints
gdb_test_no_output "set debug target 1"
set hardware_step 0
set test "probe target hardware step"
-gdb_test_multiple "si" $test {
+gdb_test_multiple "pipe si | grep resume" $test {
-re "resume \\(\[^\r\n\]+, step, .*$gdb_prompt $" {
set hardware_step 1
pass $test
@@ -35,8 +35,10 @@ if {$corefile == ""} {
clean_restart $executable
gdb_test "core-file $corefile" "Core was generated by .*" "load core"
-gdb_test "info files" "\r\nLocal core dump file:\r\n.*" "sanity check we see the core file"
-
+set re "Local core dump file:"
+gdb_test "pipe info files | grep \"$re\"" \
+ $re \
+ "sanity check we see the core file"
set test "print pthread_t of thread0"
gdb_test_multiple "p/x thread0" $test {
-re " = (0x\[0-9a-f\]+)\r\n$gdb_prompt $" {