diff options
author | Pedro Alves <palves@redhat.com> | 2014-05-16 14:43:47 +0100 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2014-05-16 14:43:47 +0100 |
commit | 73eb770959c8d8d927dbeafbf6038a651e0cb1ae (patch) | |
tree | 5526686b3d38ec2cbadc125ccceaea023f6215be /gdb/testsuite/lib | |
parent | 3fae92fc2aed37c78df4610f3c52e2fc242846b0 (diff) | |
download | binutils-gdb-73eb770959c8d8d927dbeafbf6038a651e0cb1ae.tar.gz |
mi-support.exp: Fix some pastos.
gdb/testsuite/
2014-05-16 Pedro Alves <palves@redhat.com>
* lib/mi-support.exp (mi_expect_stop): On timeout, say "timeout"
instead of "unknown output after running".
Diffstat (limited to 'gdb/testsuite/lib')
-rw-r--r-- | gdb/testsuite/lib/mi-support.exp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/testsuite/lib/mi-support.exp b/gdb/testsuite/lib/mi-support.exp index 10540388ebd..afe13e83b10 100644 --- a/gdb/testsuite/lib/mi-support.exp +++ b/gdb/testsuite/lib/mi-support.exp @@ -1060,7 +1060,7 @@ proc mi_expect_stop { reason func args file line extra test } { pass "$test" } timeout { - fail "$test (unknown output after running)" + fail "$test (timeout)" } } return @@ -1074,7 +1074,7 @@ proc mi_expect_stop { reason func args file line extra test } { } -re ".*$mi_gdb_prompt$" {fail "continue to end (2)"} timeout { - fail "$test (unknown output after running)" + fail "$test (timeout)" } } return @@ -1088,7 +1088,7 @@ proc mi_expect_stop { reason func args file line extra test } { fail "$test (inferior not stopped)" } timeout { - fail "$test (unknown output after running)" + fail "$test (timeout)" } } return @@ -1102,7 +1102,7 @@ proc mi_expect_stop { reason func args file line extra test } { pass "$test" } timeout { - fail "$test (unknown output after running)" + fail "$test (timeout)" } } return |