diff options
author | Hafiz Abid Qadeer <abidh@codesourcery.com> | 2013-05-03 15:43:58 +0000 |
---|---|---|
committer | Hafiz Abid Qadeer <abidh@codesourcery.com> | 2013-05-03 15:43:58 +0000 |
commit | 1ebff1fdfdbf851157c55915a6a87ba3b3902823 (patch) | |
tree | c8b68e6833235d6242bb002d3b745c06023b75fc /gdb/testsuite | |
parent | cde7cb0129a884a060b99c7c83e8f5c9af728b0a (diff) | |
download | gdb-1ebff1fdfdbf851157c55915a6a87ba3b3902823.zip gdb-1ebff1fdfdbf851157c55915a6a87ba3b3902823.tar.gz gdb-1ebff1fdfdbf851157c55915a6a87ba3b3902823.tar.bz2 |
2013-05-03 Hafiz Abid Qadeer <abidh@codesourcery.com>
* tracepoint.c (cmd_qtinit): Call 'stop_tracing'.
2013-05-03 Hafiz Abid Qadeer <abidh@codesourcery.com>
* status-stop.exp (test_tstart_tstart): Check for error
returned by the second 'tstart' command.
Diffstat (limited to 'gdb/testsuite')
-rw-r--r-- | gdb/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/testsuite/gdb.trace/status-stop.exp | 10 |
2 files changed, 12 insertions, 3 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index bfd7b68..ca1e0fb 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2013-05-03 Hafiz Abid Qadeer <abidh@codesourcery.com> + + * status-stop.exp (test_tstart_tstart): Check for error + returned by the second 'tstart' command. + 2013-03-27 Walfred Tedeschi <walfred.tedeschi@intel.com> * gdb.xml/maint_print_struct.exp: New file. diff --git a/gdb/testsuite/gdb.trace/status-stop.exp b/gdb/testsuite/gdb.trace/status-stop.exp index bca03d2..10e2f4e 100644 --- a/gdb/testsuite/gdb.trace/status-stop.exp +++ b/gdb/testsuite/gdb.trace/status-stop.exp @@ -79,9 +79,13 @@ proc test_tstart_tstart { } { gdb_test "trace func1" "Tracepoint \[0-9\] at $hex: file.*" gdb_test_no_output "tstart" - gdb_test "tstart" "" "tstart again" \ - "A trace is running already. Start a new run\\? \\(y or n\\) " \ - "y" + set test "tstart again" + gdb_test_multiple "tstart" $test { + -re "A trace is running already. Start a new run.*y or n.*" { + # Send 'y' and make sure that we don't get any error. + gdb_test_no_output "y" $test + } + } } } |