gdb/
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.cp / no-dmgl-verbose.exp
CommitLineData
3f542ed1
JK
1# Copyright 2011 Free Software Foundation, Inc.
2
3# This program is free software; you can redistribute it and/or modify
4# it under the terms of the GNU General Public License as published by
5# the Free Software Foundation; either version 3 of the License, or
6# (at your option) any later version.
7#
8# This program is distributed in the hope that it will be useful,
9# but WITHOUT ANY WARRANTY; without even the implied warranty of
10# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11# GNU General Public License for more details.
12#
13# You should have received a copy of the GNU General Public License
14# along with this program. If not, see <http://www.gnu.org/licenses/>. */
15
16# Test loading symbols from unrelocated C++ object files.
17
18set testfile no-dmgl-verbose
19set srcfile ${testfile}.cc
20set executable ${testfile}.o
21set binfile ${objdir}/${subdir}/${executable}
22
23if { [skip_cplus_tests] } { continue }
24
25if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" object {c++ debug}] != "" } {
26 untested ${testfile}.exp
27 return -1
28}
29
30clean_restart ${executable}
31
32gdb_test_no_output "set breakpoint pending off"
33
34gdb_breakpoint {'f(std::string)'}
35
36gdb_test {break 'f(std::basic_string<char, std::char_traits<char>, std::allocator<char> >)'} \
37 {Function ".*" not defined\.} \
38 "DMGL_VERBOSE-demangled f(std::string) is not defined"
This page took 0.023799 seconds and 4 git commands to generate.