X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=gdb%2Ftestsuite%2Fgdb.threads%2Fpthreads.exp;h=44e3c4ece3cb7c46a43e06db0b84e354448a5845;hb=12b5d08a7553953ab0c089fed79ff3c2e8389457;hp=88db0f0ed3e2d45dbdd93f86ce603942e94c9e77;hpb=cf74b8caf705c04febf1e3cb3c133d6c5d806419;p=deliverable%2Fbinutils-gdb.git diff --git a/gdb/testsuite/gdb.threads/pthreads.exp b/gdb/testsuite/gdb.threads/pthreads.exp index 88db0f0ed3..44e3c4ece3 100644 --- a/gdb/testsuite/gdb.threads/pthreads.exp +++ b/gdb/testsuite/gdb.threads/pthreads.exp @@ -1,21 +1,18 @@ -# Copyright (C) 1996, 1997 Free Software Foundation, Inc. +# Copyright (C) 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004, 2007, 2008, +# 2009, 2010 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: -# bug-gdb@prep.ai.mit.edu +# along with this program. If not, see . # This file was written by Fred Fish. (fnf@cygnus.com) @@ -23,8 +20,6 @@ if $tracelevel then { strace $tracelevel } -set prms_id 0 -set bug_id 0 # This only works with native configurations if ![isnative] then { @@ -39,42 +34,16 @@ set binfile ${objdir}/${subdir}/${testfile} # carriage return) set horiz "\[^\n\r\]*" -set built_binfile 0 if [istarget "*-*-linux"] then { set target_cflags "-D_MIT_POSIX_THREADS" } else { set target_cflags "" } -set why_msg "unrecognized error" -foreach lib {-lpthreads -lpthread -lthread} { - set options "debug" - lappend options "incdir=${objdir}/${subdir}" - lappend options "libs=$lib" - set ccout [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable $options] - switch -regexp -- $ccout { - ".*no posix threads support.*" { - set why_msg "missing threads include file" - break - } - ".*cannot open -lpthread.*" { - set why_msg "missing runtime threads library" - } - ".*Can't find library for -lpthread.*" { - set why_msg "missing runtime threads library" - } - {^$} { - pass "successfully compiled posix threads test case" - set built_binfile 1 - break - } - } -} -if {$built_binfile == "0"} { - unsupported "Couldn't compile ${srcfile}, ${why_msg}" + +if {[gdb_compile_pthreads "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable [list debug "incdir=${objdir}"]] != "" } { return -1 } -# Now we can proceed with the real testing. # Start with a fresh gdb. @@ -83,9 +52,9 @@ gdb_start gdb_reinitialize_dir $srcdir/$subdir gdb_load ${binfile} -gdb_test "set print sevenbit-strings" "" -#gdb_test "set print address off" "" -gdb_test "set width 0" "" +gdb_test_no_output "set print sevenbit-strings" +#gdb_test_no_output "set print address off" +gdb_test_no_output "set width 0" # We'll need this when we send_gdb a ^C to GDB. Need to do it before we # run the program and gdb starts saving and restoring tty states. @@ -100,14 +69,14 @@ proc all_threads_running {} { global srcfile # Reset all the counters to zero. - gdb_test "set var common_routine::hits=0" "" - gdb_test "set var common_routine::from_thread1=0" "" - gdb_test "set var common_routine::from_thread2=0" "" - gdb_test "set var common_routine::from_main=0" "" - gdb_test "set var common_routine::full_coverage=0" "" + gdb_test_no_output "set var common_routine::hits=0" + gdb_test_no_output "set var common_routine::from_thread1=0" + gdb_test_no_output "set var common_routine::from_thread2=0" + gdb_test_no_output "set var common_routine::from_main=0" + gdb_test_no_output "set var common_routine::full_coverage=0" # Disable all breakpoints. - gdb_test "disable" "" + gdb_test_no_output "disable" # Set up a breakpoint that will cause us to stop when we have # been called 15 times. This should be plenty of time to allow @@ -119,19 +88,18 @@ proc all_threads_running {} { # to stop. Since no other breakpoints are set at this time # we should stop only when we have been previously called 15 times. - send_gdb "continue\n" - gdb_expect { - -re "Continuing.*common_routine.*at.*$srcfile.*$gdb_prompt $" {} - default { - fail "continue until common routine run 15 times" - return 0 - } - timeout { - fail "continue until common routine run 15 times (timeout)" - return 0 + set return_me 1 + + gdb_test_multiple "continue" "continue until common routine run 15 times" { + -re "Continuing.*common_routine.*at.*$srcfile.*$gdb_prompt $" { + set return_me 0 } } + if { $return_me == 1 } then { + return 0; + } + # Check that we stopped when we actually expected to stop, by # verifying that there have been 15 previous hits. @@ -140,49 +108,35 @@ proc all_threads_running {} { # trap and the next. So stopping after 16 or 17 hits should be # considered acceptable. - send_gdb "p common_routine::hits\n" - gdb_expect { - -re ".*= 15\r\n$gdb_prompt $" { - pass "stopped before calling common_routine 15 times" - } - -re ".*= 16\r\n$gdb_prompt $" { - pass "stopped before calling common_routine 15 times (16 times)" - } - -re ".*= 17\r\n$gdb_prompt $" { - pass "stopped before calling common_routine 15 times (17 times)" - } - default { - fail "stopped before calling common_routine 15 times" - return 0 - } - -re ".*$gdb_prompt $" { - fail "stopped before calling common_routine 15 times" - return 0 - } - timeout { - fail "stopped before calling common_routine 15 times (timeout)" - return 0 + gdb_test_multiple "p common_routine::hits" \ + "stopped before calling common_routine 15 times" { + -re ".*= 15\r\n$gdb_prompt $" { + pass "stopped before calling common_routine 15 times" + } + -re ".*= 16\r\n$gdb_prompt $" { + pass "stopped before calling common_routine 15 times (16 times)" + } + -re ".*= 17\r\n$gdb_prompt $" { + pass "stopped before calling common_routine 15 times (17 times)" + } } - } # Also check that all of the threads have run, which will only be true # if the full_coverage variable is set. - send_gdb "p common_routine::full_coverage\n" - gdb_expect { - -re ".*= 1\r\n$gdb_prompt $" {} - default { - fail "some threads didn't run" - return 0 - } - timeout { - fail "some threads didn't run (timeout)" - return 0 + set return_me 1 + gdb_test_multiple "p common_routine::full_coverage" \ + "some threads didn't run" { + -re ".* = 1.*$gdb_prompt $" { + } + -re ".* = 0.*$gdb_prompt $" { + fail "some threads didn't run" + set return_me 0 + } } - } # Looks fine, return success. - return 1 + return $return_me } proc test_startup {} { @@ -191,46 +145,57 @@ proc test_startup {} { global main_id thread1_id thread2_id # We should be able to do an info threads before starting any others. - send_gdb "info threads\n" - gdb_expect { - -re ".*Thread.*LWP.*main.*$gdb_prompt $" { + set return_me 1 + gdb_test_multiple "info threads" "info threads" { + -re ".*Thread.*main.*$gdb_prompt $" { pass "info threads" + set return_me 0 } -re "\r\n$gdb_prompt $" { - pass "info threads" - setup_xfail "*-*-*" - fail "gdb does not support pthreads for this machine" - return 0 + unsupported "gdb does not support pthreads for this machine" } } + if { $return_me == 1 } then { + return 0; + } + # Extract the thread id number of main thread from "info threads" output. - send_gdb "info threads\n" - gdb_expect -re "(\[0-9\]+)(${horiz}Thread${horiz}main.*)($gdb_prompt $)" + gdb_test_multiple "info threads" "get main thread id" { + -re "(\[0-9\]+)(${horiz}Thread${horiz}main.*)($gdb_prompt $)" { + } + } + set main_id $expect_out(1,string) # Check that we can continue and create the first thread. - gdb_test "break thread1" "Breakpoint .* file .*$srcdir.*" + gdb_test "break thread1" "Breakpoint .* file .*$srcfile.*" gdb_test "continue" \ "Continuing.*Breakpoint .*, thread1 \\(arg=0xfeedface\\).*at.*$srcfile.*" \ "Continue to creation of first thread" - gdb_test "disable" "" + gdb_test_no_output "disable" # Extract the thread id number of thread 1 from "info threads" output. - send_gdb "info threads\n" - gdb_expect -re "(\[0-9\]+)(${horiz}Thread${horiz}thread1.*)($gdb_prompt $)" + gdb_test_multiple "info threads" "get thread 1 id" { + -re "(\[0-9\]+)(${horiz}Thread${horiz}thread1.*)($gdb_prompt $)" { + } + } + set thread1_id $expect_out(1,string) # Check that we can continue and create the second thread, # ignoring the first thread for the moment. - gdb_test "break thread2" "Breakpoint .* file .*$srcdir.*" + gdb_test "break thread2" "Breakpoint .* file .*$srcfile.*" gdb_test "continue" \ "Continuing.*Breakpoint .*, thread2 \\(arg=0xdeadbeef\\).*at.*$srcfile.*" \ "Continue to creation of second thread" # Extract the thread id number of thread 2 from "info threads" output. - send_gdb "info threads\n" - gdb_expect -re "(\[0-9\]+)(${horiz}Thread${horiz}thread2.*)($gdb_prompt $)" + gdb_test_multiple "info threads" "get thread 2 id" { + -re "(\[0-9\]+)(${horiz}Thread${horiz}thread2.*)($gdb_prompt $)" { + } + } + set thread2_id $expect_out(1,string) return 1 @@ -245,9 +210,14 @@ proc check_control_c {} { } # Send a continue followed by ^C to the process to stop it. - send_gdb "continue\n" + gdb_test_multiple "continue" "continue with all threads running" { + -re "Continuing." { + pass "Continue with all threads running" + } + } + after 2000 + send_gdb "\003" set description "Stopped with a ^C" - after 1000 [send_gdb "\003"] gdb_expect { -re "Program received signal SIGINT.*$gdb_prompt $" { pass $description @@ -257,6 +227,7 @@ proc check_control_c {} { } timeout { fail "$description (timeout)" + return 1; } } gdb_test "bt" "" @@ -265,6 +236,7 @@ proc check_control_c {} { if [all_threads_running] then { pass "All threads running after continuing from ^C stop" } + return 0; } proc check_backtraces {} { @@ -296,22 +268,12 @@ proc check_backtraces {} { "Breakpoint .* at 0x.* file .* line .*" \ "set break at common_routine in thread 2" - send_gdb "continue\n" - gdb_expect { + gdb_test_multiple "continue" "continue to bkpt at common_routine in thread 2" { -re "Breakpoint .* common_routine \\(arg=2\\).*" { pass "continue to bkpt at common_routine in thread 2" - send_gdb "backtrace\n" - gdb_expect { - -re "#0.*common_routine \\(arg=2\\).*#1.*thread2.*" { - pass "backtrace from thread 2 bkpt in common_routine" - } - default { - fail "backtrace from thread 2 bkpt in common_routine" - } - timeout { - fail "backtrace from thread 2 bkpt in common_routine (timeout)" - } - } + gdb_test "backtrace" \ + "#0.*common_routine \\(arg=2\\).*#1.*thread2.*" \ + "backtrace from thread 2 bkpt in common_routine" } -re "Breakpoint .* common_routine \\(arg=0\\).*" { fail "continue to bkpt at common_routine in thread 2 (arg=0)" @@ -319,15 +281,6 @@ proc check_backtraces {} { -re "Breakpoint .* common_routine \\(arg=1\\).*" { fail "continue to bkpt at common_routine in thread 2 (arg=1)" } - -re ".*$gdb_prompt" { - fail "continue to bkpt at common_routine in thread 2" - } - default { - fail "continue to bkpt at common_routine in thread 2 (default)" - } - timeout { - fail "continue to bkpt at common_routine in thread 2 (timeout)" - } } } @@ -335,7 +288,10 @@ setup_xfail "alpha-*-osf*" if [runto_main] then { clear_xfail "alpha-*-osf*" if [test_startup] then { - check_control_c + if [check_control_c] then { + warning "Could not stop child with ^C; skipping rest of tests.\n" + return; + } check_backtraces } }