]> Git Repo - binutils.git/blobdiff - gdb/testsuite/gdb.trace/tfind.exp
* infrun.c (handle_inferior_event)
[binutils.git] / gdb / testsuite / gdb.trace / tfind.exp
index bfbbf67d286352bb7d21f1fe646ded84d6f99748..d025f39cba502ab59ffc3930311b382dc1e48ab1 100644 (file)
@@ -1,76 +1,43 @@
-#   Copyright 1998, 2002, 2005, 2007 Free Software Foundation, Inc.
+#   Copyright 1998, 2002, 2005, 2007-2012 Free Software Foundation, Inc.
 #
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
+# the Free Software Foundation; either version 3 of the License, or
 # (at your option) any later version.
-# 
+#
 # This program is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
-# 
+#
 # You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  
-
-# Please email any bugs, comments, and/or additions to this file to:
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
 # This file was written by Michael Snyder ([email protected])
 
 load_lib "trace-support.exp";
 
-if $tracelevel then {
-    strace $tracelevel
-}
-
-set prms_id 0
-set bug_id 0
 
 gdb_exit
 gdb_start
 
-if [istarget "m68k-*-elf"] then {
-    load_lib "emc-support.exp";
-    set srcfile gdb_c_test.c
-    set binfile [board_info target d490_binfile];
-    gdb_test "set remotetimeout 6" "" ""
-    set timeout 500
-    gdb_target_monitor $binfile
-    # Give a TSTOP and ignore errors, to make sure any previous trace is off
-    gdb_test "tstop" "" ""
-    gdb_test "tfind none" "" ""
-    send_gdb "compare-sections CS\n"
-    gdb_expect {
-       -re "MIS-MATCHED.*$gdb_prompt $" {
-           untested tfind.exp
-           return -1
-           all tests in this module will fail.";
-       }
-       -re ".*$gdb_prompt $" { }
-    }
-} else {
-    set testfile "actions"
-    set srcfile ${testfile}.c
-    set binfile $objdir/$subdir/$testfile
-
-    if { [gdb_compile "$srcdir/$subdir/$srcfile" "$binfile" \
-           executable {debug nowarnings}] != "" } {
-       untested tfind.exp
-       return -1
-    }
-    gdb_load $binfile
-    gdb_test "tstop"       "" ""
-    gdb_test "tfind none"  "" ""
-    runto_main
+set testfile "actions"
+set srcfile ${testfile}.c
+set binfile $objdir/$subdir/tfind
+
+if { [gdb_compile "$srcdir/$subdir/$srcfile" "$binfile" \
+         executable {debug nowarnings}] != "" } {
+    untested tfind.exp
+    return -1
 }
+gdb_load $binfile
+gdb_test "tstop"       ".*" ""
+gdb_test "tfind none"  ".*" ""
+runto_main
 gdb_reinitialize_dir $srcdir/$subdir
 
-# We generously give ourselves one "pass" if we successfully 
-# detect that this test cannot be run on this target!
 if { ![gdb_target_supports_trace] } then {
-    pass "Current target does not supporst trace"
+    unsupported "Current target does not support trace"
     return 1;
 
 }
@@ -109,77 +76,68 @@ if { $tdp1 <= 0 || $tdp2 <= 0 || $tdp3 <= 0 || \
 }
 
 # 6.1 test tstart command
-send_gdb "tstart\n"
-gdb_expect {
+
+set return_me 1
+gdb_test_multiple "tstart" "6.1: tstart" {
     -re "Trace can only be run on remote targets.*$gdb_prompt $" {
        fail "6.1: tstart (not connected to remote?)"
-       return;
     }
     -re "Target does not support this command.*$gdb_prompt $" {
        fail "6.1: tstart (connected to wrong target?)"
-       return;
     }
     -re "Target returns error code.*$gdb_prompt $" {
        fail "6.1: tstart (connected to wrong target?)"
-       return;
     }
     -re "$gdb_prompt $" {
        pass "6.1: tstart"
-    }
-    default {
-       fail "6.1: tstart (default)"
-       return;
+       set return_me 0
     }
 }
 
+if { $return_me == 1 } then {
+    return -1;
+}
+
 # test tstatus (when trace on)
 gdb_test "tstatus" "\[Tt\]race is running.*" "test tstatus on"
 
 # 6.2 test help tstart
-gdb_test "help tstart" "Start trace data collection." "6.2: help tstart"
-
-if [istarget "m68k-*-elf"] then {
-    gdb_emclaptop_command "85,1,2,3,4,5,6"
-    sleep 5
-    
-    gdb_emclaptop_command "85,7,8,9,A,B,C"
-    sleep 5
-} else {
-    gdb_test "break end" "" ""
-    gdb_test "continue" \
-           "Continuing.*Breakpoint $decimal, end.*" \
-           "run trace experiment"
-}
+gdb_test "help tstart" "Start trace data collection\.\[\r\n\]+Usage: tstart \\\[ <notes> \.\.\. \\\]\[\r\n\]+Any arguments supplied are recorded with the trace as a note and\[\r\n\]+reported by tstatus \\(if the target supports trace notes\\)\." "6.2: help tstart"
+
+gdb_test "break end" ".*" ""
+gdb_test "continue" \
+    "Continuing.*Breakpoint $decimal, end.*" \
+    "run trace experiment"
 
 # 7.1 test tstop command
-send_gdb "tstop\n"
-gdb_expect {
+
+set return_me 1
+gdb_test_multiple "tstop" "7.1: tstop" {
     -re "Trace can only be run on remote targets.*$gdb_prompt $" {
        fail "7.1: tstop (not connected to remote?)"
-       return;
     }
     -re "Target does not support this command.*$gdb_prompt $" {
        fail "7.1: tstop (connected to wrong target?)"
-       return;
     }
     -re "Target returns error code.*$gdb_prompt $" {
        fail "7.1: tstop (connected to wrong target?)"
-       return;
     }
     -re "$gdb_prompt $" {
        pass "7.1: tstop"
+       set return_me 0
     }
-    default {
-       fail "7.1: tstop (default)"
-       return;
-    }
+}
+
+if { $return_me == 1 } then {
+    return -1;
 }
 
 # 7.2 test help tstop
-gdb_test "help tstop" "Stop trace data collection." "7.2: help tstop"
+gdb_test "help tstop" "Stop trace data collection\.\[\r\n\]+Usage: tstop \\\[ <notes> \.\.\. \\\]\[\r\n\]+Any arguments supplied are recorded with the trace as a stop reason and\[\r\n\]+reported by tstatus \\(if the target supports trace notes\\)\." "7.2: help tstop"
 
 # test tstatus (when trace off)
-gdb_test "tstatus" "\[Tt\]race.* not running.*" "test tstatus off"
+gdb_test "tstatus" "Trace stopped by a tstop command.*" \
+    "test tstatus off after tstop"
 
 ## record starting PC
 set save_pc [gdb_readexpr "(unsigned long) \$pc"];
@@ -280,7 +238,7 @@ gdb_test "tfind tracepoint -1" "failed to find.*" \
        "8.25: tfind tracepoint rejects nonexistant tracepoint (-1)"
 
 # 8.37 tfind tracepoint n where n no longer exists (but used to)
-gdb_test "delete trace $tdp2" "" ""
+gdb_test_no_output "delete trace $tdp2" ""
 gdb_tfind_test "8.37: tfind none" "none" "-1";
 gdb_tfind_test "8.37: tfind deleted tracepoint" \
        "tracepoint $tdp2" \
@@ -296,7 +254,7 @@ gdb_tfind_test "8.13: tracepoint $tdp1" "tracepoint $tdp1" \
        "\$tracepoint" "$tdp1";
 gdb_test "print \$trace_line" "$baseline" \
        "8.13: tfind tracepoint $tdp1 (line $baseline)"
-gdb_test "set \$save_frame = \$trace_frame" "" ""
+gdb_test_no_output "set \$save_frame = \$trace_frame" ""
 gdb_tfind_test "8.13: tracepoint <no arg>" "tracepoint" \
        "\$tracepoint" "$tdp1";
 gdb_test "printf \"x \%d x\\n\", \$trace_frame == \$save_frame" \
@@ -319,7 +277,7 @@ gdb_tfind_test "8.14: tfind 3" "3" "3"
 gdb_test "print \$trace_line" "$testline4" \
        "8.14: tfind 3 (line $testline4)"
 
-gdb_test "set \$test_pc = \$pc" "" ""
+gdb_test_no_output "set \$test_pc = \$pc" ""
 gdb_tfind_test "8.14: tfind none" "none" "-1"
 gdb_tfind_test "8.14: tfind pc" "pc \$test_pc" "\$trace_frame != -1" "1";
 gdb_test "print \$trace_line" "$testline4" \
@@ -333,7 +291,7 @@ gdb_test "printf \"x \%d x\\n\", \$pc == \$test_pc" \
 gdb_tfind_test "8.15: tfind 3" "3" "3"
 gdb_test "print \$trace_line" "$testline4" \
        "8.15: tfind 3 (line $testline4)"
-gdb_test "set \$test_pc = \$pc" "" ""
+gdb_test_no_output "set \$test_pc = \$pc" ""
 gdb_tfind_test "8.15: tfind pc" "pc" "\$pc == \$test_pc" "1"
 gdb_test "print \$trace_line" "$testline4" \
        "8.15: tfind pc (line $testline4)"
@@ -362,19 +320,16 @@ gdb_tfind_test "8.17: tfind line <no arg>" "line" "\$trace_line != $testline3" "
 # 8.36 tfind and disassembly
 gdb_tfind_test "8.36: tfind start" "start" "0"
 set timeout 60
-send_gdb "disassemble gdb_c_test\n"
 # look for disassembly of function label
-gdb_expect {
-    -re "<gdb_c_test>:.*$gdb_prompt $"      { pass "8.36: trace disassembly" }
-    -re ".*$gdb_prompt $"                   { fail "8.36: trace disassembly" }
-    timeout                       { fail "8.36: trace disassembly (timeout)" }
-}
+gdb_test "disassemble gdb_c_test" \
+    "<(\.\[0-9\]+|)>:.*End of assembler dump.*" \
+    "8.36: trace disassembly"
 
 gdb_test "tfind line 0" \
-       "out of range.*|failed to find.*" \
+       "out of range.*|failed to find.*|No line 0 in .*" \
        "8.18: tfind line 0";
 gdb_test "tfind line 32767" \
-       "out of range.*|failed to find.*" \
+       "out of range.*|failed to find.*|No line 32767 in .*" \
        "8.27: tfind line 32767";
 gdb_test "tfind line NoSuChFiLe.c:$baseline" \
        "No source file named.*" \
This page took 0.031587 seconds and 4 git commands to generate.