This patch adds tests for the initial rvalue reference support patchset. All of the new tests are practically mirrored regular references tests and, except for the demangler ones, are introduced in new files, which are set to be compiled with -std=gnu++11. Tested are printing of rvalue reference types and values, rvalue reference parameters in function overloading, demangling of function names containing rvalue reference parameters, casts to rvalue reference types, application of the sizeof operator to rvalue reference types and values, and support for rvalue references within the gdb python module. gdb/ChnageLog PR gdb/14441 * NEWS: Mention support for rvalue references in GDB and python. * doc/gdb.texinfo (C Plus Plus Expressions): Mention that GDB supports both lvalue and rvalue references. gdb/testsuite/ChangeLog PR gdb/14441 * gdb.cp/demangle.exp: Add rvalue reference tests. * gdb.cp/rvalue-ref-casts.cc: New file. * gdb.cp/rvalue-ref-casts.exp: New file. * gdb.cp/rvalue-ref-overload.cc: New file. * gdb.cp/rvalue-ref-overload.exp: New file. * gdb.cp/rvalue-ref-params.cc: New file. * gdb.cp/rvalue-ref-params.exp: New file. * gdb.cp/rvalue-ref-sizeof.cc: New file. * gdb.cp/rvalue-ref-sizeof.exp: New file. * gdb.cp/rvalue-ref-types.cc: New file. * gdb.cp/rvalue-ref-types.exp: New file. * gdb.python/py-rvalue-ref-value-cc.cc: New file. * gdb.python/py-rvalue-ref-value-cc.exp: New file.
78 lines
2.5 KiB
Plaintext
78 lines
2.5 KiB
Plaintext
# Copyright 2002-2017 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/>.
|
|
|
|
# This file is part of the gdb testsuite
|
|
|
|
# C++11 rvalue reference type casting tests, based on gdb.cp/casts.exp.
|
|
|
|
if {[skip_cplus_tests]} { continue }
|
|
|
|
standard_testfile .cc
|
|
|
|
if {[get_compiler_info "c++"]} {
|
|
return -1
|
|
}
|
|
|
|
if {[prepare_for_testing $testfile.exp $testfile $srcfile \
|
|
{debug c++ additional_flags="-std=gnu++11"}]} {
|
|
return -1
|
|
}
|
|
|
|
if {![runto_main]} {
|
|
untested "couldn't run to main"
|
|
return -1
|
|
}
|
|
|
|
# Prevent symbol on address 0x0 being printed.
|
|
gdb_test_no_output "set print symbol off"
|
|
|
|
set line [gdb_get_line_number {rvalue-ref-casts.exp: 1}]
|
|
gdb_test "break $line" "Breakpoint.*at.* file .*$srcfile, line $line\\." \
|
|
"break at test location"
|
|
|
|
gdb_test "continue" "Breakpoint .* at .*$srcfile:$line.*"
|
|
|
|
# Check upcasting.
|
|
gdb_test "print (A &&) br" ".* = .A &&.* {a = 42}" \
|
|
"cast derived class rvalue reference to base class rvalue reference"
|
|
|
|
# Check downcasting.
|
|
gdb_test "print (B &&) ar" ".* = .B.* {<A> = {a = 42}, b = 1729}" \
|
|
"cast base class rvalue reference to derived class rvalue reference"
|
|
|
|
# Check compiler casting
|
|
|
|
set nonzero_hex "0x\[0-9A-Fa-f\]\[0-9A-Fa-f\]+"
|
|
|
|
gdb_test "print br" ".* = .B.* {<A> = {a = 42}, b = 1729}" \
|
|
"let compiler cast base class rvalue reference to derived\
|
|
class rvalue reference"
|
|
|
|
gdb_test "print static_cast<A &&> (*b)" " = \\(A \\&\\&\\) @$hex: {a = 42}" \
|
|
"static_cast to rvalue reference type"
|
|
|
|
gdb_test "print reinterpret_cast<A &&> (*b)" \
|
|
" = \\(A \\&\\&\\) @$hex: {a = 42}" \
|
|
"reinterpret_cast to rvalue reference type"
|
|
|
|
gdb_test "print dynamic_cast<Alpha &&> (derived)" \
|
|
" = \\(Alpha \\&\\&\\) @$nonzero_hex: {.* = ${nonzero_hex}(\
|
|
<vtable for Derived.*>)?}" \
|
|
"dynamic_cast simple upcast to rvalue reference"
|
|
|
|
gdb_test "print dynamic_cast<VirtuallyDerived &&> (*ad)" \
|
|
"dynamic_cast failed" \
|
|
"dynamic_cast to rvalue reference to non-existing base"
|