diff options
author | Nathan Sidwell <nathan@codesourcery.com> | 2006-11-29 16:16:46 +0000 |
---|---|---|
committer | Nathan Sidwell <nathan@codesourcery.com> | 2006-11-29 16:16:46 +0000 |
commit | ac6c2fba055f3e5617d63b00c29279c876e4e0f9 (patch) | |
tree | 6c8413754d292d01b10f9b41d8af66d869a2b548 /gdb/testsuite/gdb.threads/linux-dp.exp | |
parent | 004ae5266b670985b6aa2acb181c62f4104f853c (diff) | |
download | binutils-gdb-ac6c2fba055f3e5617d63b00c29279c876e4e0f9.tar.gz |
* gdb.threads/linux-dp.exp: Adjust regexps used to scan thread
info. Adjust test names.
Diffstat (limited to 'gdb/testsuite/gdb.threads/linux-dp.exp')
-rw-r--r-- | gdb/testsuite/gdb.threads/linux-dp.exp | 22 |
1 files changed, 14 insertions, 8 deletions
diff --git a/gdb/testsuite/gdb.threads/linux-dp.exp b/gdb/testsuite/gdb.threads/linux-dp.exp index c2e7c660c52..fe9f52847c5 100644 --- a/gdb/testsuite/gdb.threads/linux-dp.exp +++ b/gdb/testsuite/gdb.threads/linux-dp.exp @@ -73,15 +73,18 @@ for {set i 0} {$i < 5} {incr i} { -re "info threads\r\n" { exp_continue } - -re "^\\*? +(\[0-9\]+ Thread \[0-9\]+) \[^\n\]*\n" { + -re "^. +(\[0-9\]+ Thread \[-0-9\]+) \[^\n\]*\n" { verbose -log "found thread $expect_out(1,string)" 2 lappend threads_before $expect_out(1,string) exp_continue } + -re "^\[^\n\]*\n" { + verbose -log "skipping line" 2 + } -re "^$gdb_prompt $" { } timeout { - fail "(timeout) info threads" + fail "(timeout) info threads before: $i" } } send_gdb "next\n" @@ -139,7 +142,7 @@ for {set i 0} {$i < 5} {incr i} { -re "info threads\r\n" { exp_continue } - -re "^\\*? +(\[0-9\]+ Thread \[0-9\]+) \[^\n\]+\n" { + -re "^. +(\[0-9\]+ Thread \[-0-9\]+) \[^\n\]*\n" { set name $expect_out(1,string) for {set j 0} {$j != [llength $threads_before] } {incr j} { if {$name == [lindex $threads_before $j]} { @@ -153,23 +156,26 @@ for {set i 0} {$i < 5} {incr i} { } exp_continue } + -re "^\[^\n\]*\n" { + verbose -log "skipping line" 2 + } -re "^$gdb_prompt $" { if { [llength $threads_before] != 0 } { - fail "create philosopher: $i" + fail "info threads after: $i" } elseif { !$i && [llength $threads_after] == 2 } { set expect_manager 1 - pass "create philosopher: $i" + pass "info threads after: $i" } elseif { [llength $threads_after] == 1 } { if { $expect_manager < 0 } { set expect_manager 0 } - pass "create philosopher: $i" + pass "info threads after: $i" } else { - fail "create philosopher: $i" + fail "info threads after: $i" } } timeout { - fail "(timeout) info threads" + fail "(timeout) info threads after: $i" } } |