OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [gdb-7.2/] [gdb-7.2-or32-1.0rc3/] [gdb/] [testsuite/] [gdb.base/] [watch_thread_num.exp] - Diff between revs 330 and 513

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

Rev 330 Rev 513
# This testcase is part of GDB, the GNU debugger.
# This testcase is part of GDB, the GNU debugger.
# Copyright 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
# Copyright 2007, 2008, 2009, 2010 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 .  */
# watch-thread_num.exp   Test thread  parameter for
# watch-thread_num.exp   Test thread  parameter for
#                        watch commands.
#                        watch commands.
#
#
if $tracelevel then {
if $tracelevel then {
        strace $tracelevel
        strace $tracelevel
}
}
set testfile watch_thread_num
set testfile watch_thread_num
set srcfile ${testfile}.c
set srcfile ${testfile}.c
set binfile ${objdir}/${subdir}/${testfile}
set binfile ${objdir}/${subdir}/${testfile}
# What compiler are we using?
# What compiler are we using?
#
#
if [get_compiler_info ${binfile}] {
if [get_compiler_info ${binfile}] {
    return -1
    return -1
}
}
if {[gdb_compile_pthreads "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
if {[gdb_compile_pthreads "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
    return -1
    return -1
}
}
gdb_exit
gdb_exit
gdb_start
gdb_start
gdb_reinitialize_dir $srcdir/$subdir
gdb_reinitialize_dir $srcdir/$subdir
gdb_load ${binfile}
gdb_load ${binfile}
if { ![runto main] } then {
if { ![runto main] } then {
   fail "run to main"
   fail "run to main"
   return
   return
}
}
# Disable hardware watchpoints if necessary.
# Disable hardware watchpoints if necessary.
if [target_info exists gdb,no_hardware_watchpoints] {
if [target_info exists gdb,no_hardware_watchpoints] {
    gdb_test_no_output "set can-use-hw-watchpoints 0" ""
    gdb_test_no_output "set can-use-hw-watchpoints 0" ""
}
}
gdb_test "watch shared_var thread 0" "Unknown thread 0\." "Watchpoint on invalid thread"
gdb_test "watch shared_var thread 0" "Unknown thread 0\." "Watchpoint on invalid thread"
gdb_test "watch shared_var thread" "A syntax error in expression, near `thread'\." "Invalid watch syntax"
gdb_test "watch shared_var thread" "A syntax error in expression, near `thread'\." "Invalid watch syntax"
gdb_test "Next 5" ".*"
gdb_test "Next 5" ".*"
gdb_test "break thread_function" "Breakpoint \[0-9\].*" \
gdb_test "break thread_function" "Breakpoint \[0-9\].*" \
  "Set breakpoint at thread_function"
  "Set breakpoint at thread_function"
gdb_test "continue" ".*Breakpoint 2.*" "Stopped in thread_function"
gdb_test "continue" ".*Breakpoint 2.*" "Stopped in thread_function"
gdb_test_multiple "thread" "Thread command" {
gdb_test_multiple "thread" "Thread command" {
    -re ".*Current thread is (\[0-9\]*).*$gdb_prompt $" {
    -re ".*Current thread is (\[0-9\]*).*$gdb_prompt $" {
        pass "Thread command"
        pass "Thread command"
    }
    }
}
}
set thread_num "$expect_out(1,string)"
set thread_num "$expect_out(1,string)"
gdb_test_no_output "disable 2" "Disable breakpoint 2"
gdb_test_no_output "disable 2" "Disable breakpoint 2"
gdb_test "watch shared_var thread $thread_num" "atchpoint 3: shared_var" "Watchpoint on shared variable"
gdb_test "watch shared_var thread $thread_num" "atchpoint 3: shared_var" "Watchpoint on shared variable"
gdb_test "info breakpoint 3" "stop only in thread $thread_num"
gdb_test "info breakpoint 3" "stop only in thread $thread_num"
for {set i 1} {$i <= 10} {incr i 1} {
for {set i 1} {$i <= 10} {incr i 1} {
    set watchpoint "Watchpoint triggered iteration $i"
    set watchpoint "Watchpoint triggered iteration $i"
    set check "Check thread that triggered iteration $i"
    set check "Check thread that triggered iteration $i"
    gdb_test "continue" "atchpoint 3: shared_var.*" $watchpoint
    gdb_test "continue" "atchpoint 3: shared_var.*" $watchpoint
    gdb_test "thread" ".*Current thread is $thread_num .*" $check
    gdb_test "thread" ".*Current thread is $thread_num .*" $check
}
}
 
 

powered by: WebSVN 2.1.0

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