]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blobdiff - gdb/testsuite/gdb.threads/pthreads.exp
Update years in copyright notice for the GDB files.
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.threads / pthreads.exp
index e590c3dbf6bbc87377ccbf5302ed6f67f3ac8fbf..96652775b834a18fe087d507a88be4243c7d9bf5 100644 (file)
@@ -1,5 +1,4 @@
-# Copyright (C) 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004, 2007, 2008
-# Free Software Foundation, Inc.
+# Copyright (C) 1996-2013 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
 
 # This file was written by Fred Fish. (fnf@cygnus.com)
 
-if $tracelevel then {
-       strace $tracelevel
-}
-
-set prms_id 0
-set bug_id 0
-
-# This only works with native configurations
-if ![isnative] then {
-    return
-}
 
-set testfile "pthreads"
-set srcfile ${testfile}.c
-set binfile ${objdir}/${subdir}/${testfile}
+standard_testfile
 
 # regexp for "horizontal" text (i.e. doesn't include newline or
 # carriage return)
@@ -42,28 +28,22 @@ if [istarget "*-*-linux"] then {
     set target_cflags ""
 }
 
-if {[gdb_compile_pthreads "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable [list debug "incdir=${objdir}"]] != "" } {
+if {[gdb_compile_pthreads "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable debug] != "" } {
     return -1
 }
 
+clean_restart ${binfile}
 
-# Start with a fresh gdb.
-
-gdb_exit
-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.
 # On Ultrix, we don't need it and it is really slow (because shell_escape
 # doesn't use vfork).
 if ![istarget "*-*-ultrix*"] then {
-    gdb_test "shell stty intr '^C'" ""
+    gdb_test "shell stty intr '^C'" ".*"
 }
 
 proc all_threads_running {} {
@@ -71,38 +51,37 @@ 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
     # every thread to run at least once, since each thread sleeps for
     # one second between calls to common_routine.
-    gdb_test "tbreak common_routine if hits >= 15" ""
+    gdb_test "tbreak common_routine if hits >= 15" ".*"
 
     # Start all the threads running again and wait for the inferior
     # 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.
 
@@ -111,53 +90,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.*$gdb_prompt $" {}
-       -re ".* = 0.*$gdb_prompt $" {
-           fail "some threads didn't run"
-           return 0
-       }
-       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 {} {
@@ -166,20 +127,27 @@ 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 {
+    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 $" {
            unsupported "gdb does not support pthreads for this machine"
-           return 0
        }
     }
 
+    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.
@@ -187,11 +155,14 @@ proc test_startup {} {
     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,
@@ -202,8 +173,11 @@ proc test_startup {} {
            "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
@@ -218,14 +192,10 @@ proc check_control_c {} {
     }
 
     # Send a continue followed by ^C to the process to stop it.
-    send_gdb "continue\n"
-    gdb_expect {
+    gdb_test_multiple "continue" "continue with all threads running" {
        -re "Continuing." {
            pass "Continue with all threads running"
        }
-       timeout {
-           fail "Continue with all threads running (timeout)"
-       }
     }
     after 2000
     send_gdb "\003"
@@ -242,7 +212,7 @@ proc check_control_c {} {
            return 1;
        }
     }
-    gdb_test "bt" ""
+    gdb_test "bt" ".*"
 
     # Verify that all threads can be run again after a ^C stop.
     if [all_threads_running] then {
@@ -280,38 +250,19 @@ proc check_backtraces {} {
            "Breakpoint .* at 0x.* file .* line .*" \
            "set break at common_routine in thread 2"
 
-    send_gdb "continue\n"
-    gdb_expect {
-       -re "Breakpoint .* common_routine \\(arg=2\\).*" {
+    gdb_test_multiple "continue" "continue to bkpt at common_routine in thread 2" {
+       -re "Breakpoint .* common_routine \\(arg=2\\).*$gdb_prompt $" {
            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\\).*" {
+       -re "Breakpoint .* common_routine \\(arg=0\\).*$gdb_prompt $" {
            fail "continue to bkpt at common_routine in thread 2 (arg=0)"
        }
-       -re "Breakpoint .* common_routine \\(arg=1\\).*" {
+       -re "Breakpoint .* common_routine \\(arg=1\\).*$gdb_prompt $" {
            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)"
-       }
     }
 }