OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [gnu-src/] [gdb-6.8/] [pre-binutils-2.20.1-sync/] [gdb/] [testsuite/] [gdb.threads/] [thread-specific.exp] - Diff between revs 157 and 223

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 157 Rev 223
# Copyright 2004, 2007, 2008 Free Software Foundation, Inc.
# Copyright 2004, 2007, 2008 Free Software Foundation, Inc.
# This program is free software; you can redistribute it and/or modify
# 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
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
# (at your option) any later version.
#
#
# This program is distributed in the hope that it will be useful,
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
# GNU General Public License for more details.
#
#
# You should have received a copy of the GNU General Public License
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see .
# along with this program.  If not, see .
# Please email any bugs, comments, and/or additions to this file to:
# Please email any bugs, comments, and/or additions to this file to:
# bug-gdb@prep.ai.mit.edu
# bug-gdb@prep.ai.mit.edu
# This file was written by Daniel Jacobowitz .
# This file was written by Daniel Jacobowitz .
# It tests that the correct breakpoint is reported when we hit a
# It tests that the correct breakpoint is reported when we hit a
# thread-specific breakpoint inserted for several threads.
# thread-specific breakpoint inserted for several threads.
if $tracelevel then {
if $tracelevel then {
        strace $tracelevel
        strace $tracelevel
}
}
set prms_id 0
set prms_id 0
set bug_id 0
set bug_id 0
set testfile "thread-specific"
set testfile "thread-specific"
set srcfile ${testfile}.c
set srcfile ${testfile}.c
set binfile ${objdir}/${subdir}/${testfile}
set binfile ${objdir}/${subdir}/${testfile}
if {[gdb_compile_pthreads "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable [list debug "incdir=${objdir}"]] != "" } {
if {[gdb_compile_pthreads "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable [list debug "incdir=${objdir}"]] != "" } {
    return -1
    return -1
}
}
# Return a list of the valid thread IDs, with the initial thread first.
# Return a list of the valid thread IDs, with the initial thread first.
proc get_thread_list { } {
proc get_thread_list { } {
  global gdb_prompt
  global gdb_prompt
  global expect_out
  global expect_out
  set thr_list ""
  set thr_list ""
  gdb_test_multiple "info threads" "get threads list" {
  gdb_test_multiple "info threads" "get threads list" {
    -re "info threads\r\n" {
    -re "info threads\r\n" {
      exp_continue
      exp_continue
    }
    }
    -re "^\\*  *(\[0-9\]*) Thread \[^\n\]*main\[^\n\]*\n" {
    -re "^\\*  *(\[0-9\]*) Thread \[^\n\]*main\[^\n\]*\n" {
      set thr_list "$expect_out(1,string) $thr_list"
      set thr_list "$expect_out(1,string) $thr_list"
      exp_continue
      exp_continue
    }
    }
    -re "^  *(\[0-9\]*) Thread \[^\n\]*\n" {
    -re "^  *(\[0-9\]*) Thread \[^\n\]*\n" {
      lappend thr_list $expect_out(1,string)
      lappend thr_list $expect_out(1,string)
      exp_continue
      exp_continue
    }
    }
    -re ".*$gdb_prompt $" {
    -re ".*$gdb_prompt $" {
      if { [llength $thr_list] != 0 } {
      if { [llength $thr_list] != 0 } {
        pass "get threads list"
        pass "get threads list"
      } else {
      } else {
        fail "get threads list (no threads)"
        fail "get threads list (no threads)"
      }
      }
    }
    }
  }
  }
  return $thr_list
  return $thr_list
}
}
# Start with a fresh gdb.
# Start with a fresh gdb.
gdb_exit
gdb_exit
gdb_start
gdb_start
gdb_reinitialize_dir $srcdir/$subdir
gdb_reinitialize_dir $srcdir/$subdir
gdb_load ${binfile}
gdb_load ${binfile}
gdb_test "set print sevenbit-strings" ""
gdb_test "set print sevenbit-strings" ""
gdb_test "set width 0" ""
gdb_test "set width 0" ""
runto_main
runto_main
gdb_breakpoint [gdb_get_line_number "thread-specific.exp: last thread start"]
gdb_breakpoint [gdb_get_line_number "thread-specific.exp: last thread start"]
gdb_continue_to_breakpoint "all threads started"
gdb_continue_to_breakpoint "all threads started"
set line [gdb_get_line_number "thread-specific.exp: thread loop"]
set line [gdb_get_line_number "thread-specific.exp: thread loop"]
set threads [get_thread_list]
set threads [get_thread_list]
if {[llength $threads] == 0} {
if {[llength $threads] == 0} {
  # We have already issued a FAIL above.
  # We have already issued a FAIL above.
  return 1
  return 1
}
}
gdb_test_multiple "break $line thread [lindex $threads 0]" \
gdb_test_multiple "break $line thread [lindex $threads 0]" \
  "breakpoint $line main thread" {
  "breakpoint $line main thread" {
    -re "Breakpoint (\[0-9\]*) at.* file .*$srcfile, line.*$gdb_prompt $" {
    -re "Breakpoint (\[0-9\]*) at.* file .*$srcfile, line.*$gdb_prompt $" {
      set main_breakpoint $expect_out(1,string)
      set main_breakpoint $expect_out(1,string)
      pass "breakpoint $line main thread"
      pass "breakpoint $line main thread"
    }
    }
}
}
foreach thread [lrange $threads 1 end] {
foreach thread [lrange $threads 1 end] {
  gdb_breakpoint "$line thread $thread"
  gdb_breakpoint "$line thread $thread"
}
}
gdb_test_multiple "continue" "continue to thread-specific breakpoint" {
gdb_test_multiple "continue" "continue to thread-specific breakpoint" {
        -re "Breakpoint $main_breakpoint, .* at .*\r\n$gdb_prompt $" {
        -re "Breakpoint $main_breakpoint, .* at .*\r\n$gdb_prompt $" {
            fail "continue to thread-specific breakpoint (wrong breakpoint)"
            fail "continue to thread-specific breakpoint (wrong breakpoint)"
        }
        }
        -re "Breakpoint .* at .*\r\n$gdb_prompt $" {
        -re "Breakpoint .* at .*\r\n$gdb_prompt $" {
            pass "continue to thread-specific breakpoint"
            pass "continue to thread-specific breakpoint"
        }
        }
}
}
return 0
return 0
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.