mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-15 04:31:49 +08:00
cdc7edd7b1
Changes in v3: Fixed incorrect substitutions. This fixes offender testcases that have test names starting with uppercase when using gdb_test in a single line construct. gdb/testsuite/ChangeLog 2016-12-01 Luis Machado <lgustavo@codesourcery.com> Fix test names starting with uppercase throughout the files. * gdb.arch/i386-mpx-simple_segv.exp * gdb.arch/i386-mpx.exp * gdb.arch/i386-permbkpt.exp * gdb.arch/pa-nullify.exp * gdb.arch/powerpc-d128-regs.exp * gdb.arch/vsx-regs.exp * gdb.base/bfp-test.exp * gdb.base/break.exp * gdb.base/breakpoint-shadow.exp * gdb.base/callfuncs.exp * gdb.base/charset.exp * gdb.base/commands.exp * gdb.base/completion.exp * gdb.base/dfp-test.exp * gdb.base/echo.exp * gdb.base/ending-run.exp * gdb.base/eval.exp * gdb.base/expand-psymtabs.exp * gdb.base/float128.exp * gdb.base/floatn.exp * gdb.base/foll-exec-mode.exp * gdb.base/gdb1056.exp * gdb.base/gdb11531.exp * gdb.base/kill-after-signal.exp * gdb.base/multi-forks.exp * gdb.base/overlays.exp * gdb.base/pending.exp * gdb.base/sepdebug.exp * gdb.base/testenv.exp * gdb.base/valgrind-db-attach.exp * gdb.base/watch_thread_num.exp * gdb.base/watchpoint-cond-gone.exp * gdb.base/watchpoint.exp * gdb.base/watchpoints.exp * gdb.cp/arg-reference.exp * gdb.cp/baseenum.exp * gdb.cp/operator.exp * gdb.cp/shadow.exp * gdb.dwarf2/dw2-op-out-param.exp * gdb.dwarf2/dw2-reg-undefined.exp * gdb.go/chan.exp * gdb.go/hello.exp * gdb.go/integers.exp * gdb.go/methods.exp * gdb.go/package.exp * gdb.guile/scm-parameter.exp * gdb.guile/scm-progspace.exp * gdb.guile/scm-value.exp * gdb.mi/mi-pending.exp * gdb.mi/user-selected-context-sync.exp * gdb.multi/multi-attach.exp * gdb.multi/tids.exp * gdb.opt/clobbered-registers-O2.exp * gdb.pascal/floats.exp * gdb.pascal/integers.exp * gdb.python/py-block.exp * gdb.python/py-events.exp * gdb.python/py-parameter.exp * gdb.python/py-symbol.exp * gdb.python/py-symtab.exp * gdb.python/py-type.exp * gdb.python/py-value.exp * gdb.python/py-xmethods.exp * gdb.python/python.exp * gdb.reverse/break-precsave.exp * gdb.reverse/consecutive-precsave.exp * gdb.reverse/finish-precsave.exp * gdb.reverse/i386-precsave.exp * gdb.reverse/machinestate-precsave.exp * gdb.reverse/sigall-precsave.exp * gdb.reverse/solib-precsave.exp * gdb.reverse/step-precsave.exp * gdb.reverse/until-precsave.exp * gdb.reverse/watch-precsave.exp * gdb.server/ext-attach.exp * gdb.server/ext-restart.exp * gdb.server/ext-run.exp * gdb.server/ext-wrapper.exp * gdb.stabs/gdb11479.exp * gdb.stabs/weird.exp * gdb.threads/attach-many-short-lived-threads.exp * gdb.threads/kill.exp * gdb.threads/watchpoint-fork.exp
62 lines
2.3 KiB
Plaintext
62 lines
2.3 KiB
Plaintext
# Copyright 2008-2016 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 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/>.
|
|
|
|
standard_testfile .cc
|
|
|
|
if { [prepare_for_testing ${testfile}.exp ${testfile} ${srcfile} {debug c++}] } {
|
|
return -1
|
|
}
|
|
|
|
############################################
|
|
|
|
if ![runto_main] then {
|
|
perror "couldn't run to breakpoint main"
|
|
continue
|
|
}
|
|
|
|
# Test global operator
|
|
gdb_test "p a == 1" "= 11" "global operator"
|
|
gdb_test "p a == 'a'" "= 12" "global operator overload"
|
|
|
|
# Test ADL operator
|
|
gdb_test "p bc == 1" "= 22" "ADL operator"
|
|
gdb_test "p bc == 'a'" "= 23" "ADL operator overload"
|
|
gdb_test "p B::BD::operator== (bc,'a')" "= 24" "fully qualified explicit operator call"
|
|
|
|
# Test operator imported from anonymous namespace
|
|
gdb_test "p d == 1" "= 33" "anonymous namespace operator"
|
|
gdb_test "p d == 'a'" "= 34" "anonymous namespace operator overload"
|
|
gdb_test "p d == 1.0f" "= 35" "anonymous namespace operator overload float"
|
|
|
|
# Test operator imported by using directive
|
|
gdb_test "p e == 1" "= 44" "imported operator"
|
|
gdb_test "p e == 'a'" "= 45" "imported operator overload"
|
|
gdb_test "p e == 1.0f" "= 46" "imported operator overload float"
|
|
|
|
# Test member operator
|
|
gdb_test "p g == 1" "= 55" "member operator"
|
|
gdb_test "p g == 'a'" "= 56" "member operator overload"
|
|
|
|
# Test that operators are not wrongly imported
|
|
# by import declarations and namespace aliases
|
|
gdb_test "p h == 1" "Cannot resolve function operator== to any overloaded instance" "namespace alias"
|
|
gdb_test "p j == 1" "Cannot resolve function operator== to any overloaded instance" "imported declaration"
|
|
|
|
# Test that indirectly imported operators work
|
|
gdb_test "p l == 1" "= 88"
|
|
|
|
# Test that we don't fall into an import loop
|
|
gdb_test {p x[0]} {No symbol "operator\[\]" in current context.}
|