]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.cp/bs15503.exp
Copyright updates for 2007.
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.cp / bs15503.exp
CommitLineData
6aba47ca 1# Copyright 1992, 2004, 2005, 2007 Free Software Foundation, Inc.
7be570e7
JM
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 2 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, write to the Free Software
15# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
16
17# Test case for CLLbs15503
18# This file was written by Sue Kimura (sue_kimura@hp.com)
77c26ae3 19# Rewritten by Michael Chastain (mec.gnu@mindspring.com)
7be570e7
JM
20
21if $tracelevel {
22 strace $tracelevel
23}
24
5f579bc5
NS
25if { [skip_cplus_tests] } { continue }
26
c1d88655
UW
27# On SPU this test fails because the executable exceeds local storage size.
28if { [istarget "spu*-*-*"] } {
29 return 0
30}
31
7be570e7
JM
32set testfile "bs15503"
33set srcfile ${testfile}.cc
34set binfile ${objdir}/${subdir}/${testfile}
35
afabe08c
JL
36if [get_compiler_info ${binfile}] {
37 return -1
38}
39
7be570e7
JM
40if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable "debug c++"] != "" } {
41 perror "Couldn't compile ${srcfile}"
42 return -1
43}
44
7be570e7
JM
45gdb_exit
46gdb_start
47gdb_reinitialize_dir $srcdir/$subdir
77c26ae3 48gdb_load ${binfile}
7be570e7 49
77c26ae3
MC
50if ![runto_main] then {
51 perror "couldn't run to breakpoint"
52 continue
7be570e7 53}
77c26ae3
MC
54
55# Set breakpoint on template function
56
7be570e7 57gdb_test "break StringTest<wchar_t>::testFunction" \
77c26ae3 58 "Breakpoint $decimal at $hex: file .*${srcfile}, line $decimal."
7be570e7 59
77c26ae3
MC
60gdb_test "continue" \
61 ".*Breakpoint $decimal, StringTest<wchar_t>::testFunction \\(this=$hex\\).*" \
62 "continue to StringTest<wchar_t>"
7be570e7 63
77c26ae3
MC
64# Run to some random point in the middle of the function.
65
66gdb_breakpoint [gdb_get_line_number "find position where blank needs to be inserted"]
67gdb_continue_to_breakpoint "find position where blank needs to be inserted"
7be570e7 68
77c26ae3 69# Call some string methods.
7be570e7 70
77c26ae3
MC
71gdb_test "print s.length()" "\\$\[0-9\]+ = 42"
72gdb_test "print s\[0\]" "\\$\[0-9\]+ =.* 'I'"
73gdb_test "print s\[s.length()-1\]" "\\$\[0-9\]+ =.* 'g'"
74gdb_test "print (const char *) s" \
75 "\\$\[0-9\]+ = $hex \"I am a short stringand now a longer string\""
76
77# TODO: tests that do not work with gcc 2.95.3
78# -- chastain 2004-01-07
79#
80# gdb_test "print s.compare(s)" "\\$\[0-9\]+ = 0"
81# gdb_test "print s.compare(\"AAA\")" "\\$\[0-9\]+ = 1"
82# gdb_test "print s.compare(\"ZZZ\")" "\\$\[0-9\]+ = -1"
83
84# TODO: tests that do not work with gcc 2.95.3 and gcc 3.3.2.
85# cannot call overloaded non-member operator. -- chastain 2004-01-07
86#
87# gdb_test "print s == s" "\\$\[0-9\]+ = true"
88# gdb_test "print s > "AAA" "\\$\[0-9\]+ = true"
89# gdb_test "print s < "ZZZ" "\\$\[0-9\]+ = true"
90
16963cb6
DJ
91# TODO: GDB doesn't know to convert the string to a const char *, and
92# instead tries to use the string as a structure initializer.
77c26ae3
MC
93#
94# gdb_test "print s == \"I am a short stringand now a longer string\"" \
16963cb6 95# "\\$\[0-9\]+ = true"
77c26ae3
MC
96
97gdb_test "print (const char *) s.substr(0,4)" "\\$\[0-9\]+ = $hex \"I am\""
98gdb_test "print (const char *) (s=s.substr(0,4))" \
99 "\\$\[0-9\]+ = $hex \"I am\""
100
101# TODO: cannot call overloaded non-member operator again.
102# -- chastain 2004-01-07
103#
104# gdb_test "print (const char *) (s + s)" \
105# "\\$\[0-9\]+ = $hex \"I amI am\""
106# gdb_test "print (const char *) (s + \" \" + s)" \
107# "\\$\[0-9\]+ = $hex \"I am I am\""