mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-23 10:03:47 +08:00
1d506c26d9
This commit is the result of the following actions: - Running gdb/copyright.py to update all of the copyright headers to include 2024, - Manually updating a few files the copyright.py script told me to update, these files had copyright headers embedded within the file, - Regenerating gdbsupport/Makefile.in to refresh it's copyright date, - Using grep to find other files that still mentioned 2023. If these files were updated last year from 2022 to 2023 then I've updated them this year to 2024. I'm sure I've probably missed some dates. Feel free to fix them up as you spot them.
96 lines
2.8 KiB
Plaintext
96 lines
2.8 KiB
Plaintext
# Copyright 2011-2024 Free Software Foundation, Inc.
|
|
#
|
|
# Contributed by Red Hat, originally written by Keith Seitz.
|
|
#
|
|
# 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 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, see <http://www.gnu.org/licenses/>.
|
|
|
|
# This file is part of the gdb testsuite.
|
|
|
|
proc test_class {class} {
|
|
|
|
# An array holding the overload types for the methods A::outer::foo
|
|
# and A::B::inner::foo. The first element is the overloaded method
|
|
# parameter. The second element is the expected source file number,
|
|
# e.g. "ovsrch?.cc".
|
|
array set tests {
|
|
"char*" 4
|
|
"int" 3
|
|
"void" 2
|
|
}
|
|
|
|
# Test each overload instance twice: once quoted, once unquoted
|
|
set conditional1 "if (a_param == 3)"
|
|
set conditional2 "if (A::outer::func ())"
|
|
foreach ovld [array names tests] {
|
|
set method "${class}::foo ($ovld) const"
|
|
set result "Breakpoint (\[0-9\]).*file .*ovsrch$tests($ovld).*"
|
|
gdb_test "break $method" $result
|
|
gdb_test "break '$method'" $result
|
|
|
|
# Also test with a conditional tacked onto the end.
|
|
if {[string compare $ovld "void"] != 0} {
|
|
gdb_test "break $method $conditional1" $result
|
|
gdb_test "break '$method' $conditional1" $result
|
|
gdb_test "break $method $conditional2" $result
|
|
gdb_test "break '$method' $conditional2" $result
|
|
}
|
|
}
|
|
|
|
# Test whether open parentheses are correctly identified as overload
|
|
# information or conditional.
|
|
gdb_test "break ${class}::hibob if (a_param == 3)" "Breakpoint (\[0-9\]).*"
|
|
}
|
|
|
|
require allow_cplus_tests
|
|
|
|
# Test for c++/11734
|
|
standard_testfile ovsrch1.cc ovsrch2.cc ovsrch3.cc ovsrch4.cc
|
|
|
|
include_file ovsrch.h
|
|
|
|
if {[prepare_for_testing "failed to prepare" $testfile \
|
|
[list $srcfile $srcfile2 $srcfile3 $srcfile4] {c++ debug}]} {
|
|
return -1
|
|
}
|
|
|
|
if {![runto_main]} {
|
|
return
|
|
}
|
|
|
|
# Break in A::stop_here and run tests.
|
|
if {[gdb_breakpoint "A::stop_here"]} {
|
|
pass "break A::stop_here"
|
|
}
|
|
|
|
if {[gdb_breakpoint "'A::stop_here'"]} {
|
|
pass "break 'A::stop_here'"
|
|
}
|
|
|
|
gdb_continue_to_breakpoint "stop_here"
|
|
test_class A::outer
|
|
|
|
# Break in A::B::stop_here_too and run tests.
|
|
if {[gdb_breakpoint "A::B::stop_here_too"]} {
|
|
pass "break A::B::stop_here_too"
|
|
}
|
|
|
|
if {[gdb_breakpoint "'A::B::stop_here_too'"]} {
|
|
pass "break 'A::B::stop_here_too'"
|
|
}
|
|
|
|
gdb_continue_to_breakpoint "stop_here_too"
|
|
test_class A::B::inner
|
|
|
|
gdb_exit
|