OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [trunk/] [gnu-src/] [gdb-7.1/] [gdb/] [testsuite/] [gdb.cp/] [bs15503.exp] - Blame information for rev 227

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 227 jeremybenn
# Copyright 1992, 2004, 2005, 2007, 2008, 2009, 2010
2
# Free Software Foundation, Inc.
3
 
4
# This program is free software; you can redistribute it and/or modify
5
# it under the terms of the GNU General Public License as published by
6
# the Free Software Foundation; either version 3 of the License, or
7
# (at your option) any later version.
8
#
9
# This program is distributed in the hope that it will be useful,
10
# but WITHOUT ANY WARRANTY; without even the implied warranty of
11
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
# GNU General Public License for more details.
13
#
14
# You should have received a copy of the GNU General Public License
15
# along with this program.  If not, see .  */
16
 
17
# Test case for CLLbs15503
18
# This file was written by Sue Kimura (sue_kimura@hp.com)
19
# Rewritten by Michael Chastain (mec.gnu@mindspring.com)
20
 
21
if $tracelevel {
22
    strace $tracelevel
23
}
24
 
25
if { [skip_cplus_tests] } { continue }
26
 
27
# On SPU this test fails because the executable exceeds local storage size.
28
if { [istarget "spu*-*-*"] } {
29
        return 0
30
}
31
 
32
set testfile "bs15503"
33
set srcfile ${testfile}.cc
34
set binfile ${objdir}/${subdir}/${testfile}
35
 
36
if [get_compiler_info ${binfile}] {
37
    return -1
38
}
39
 
40
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable "debug c++"] != "" } {
41
    perror "Couldn't compile ${srcfile}"
42
    return -1
43
}
44
 
45
gdb_exit
46
gdb_start
47
gdb_reinitialize_dir $srcdir/$subdir
48
gdb_load ${binfile}
49
 
50
if ![runto_main] then {
51
    perror "couldn't run to breakpoint"
52
    continue
53
}
54
 
55
# Set breakpoint on template function
56
 
57
gdb_test "break StringTest::testFunction" \
58
    "Breakpoint $decimal at $hex: file .*${srcfile}, line $decimal."
59
 
60
gdb_test "continue" \
61
    ".*Breakpoint $decimal, StringTest::testFunction \\(this=$hex\\).*" \
62
    "continue to StringTest"
63
 
64
# Run to some random point in the middle of the function.
65
 
66
gdb_breakpoint [gdb_get_line_number "find position where blank needs to be inserted"]
67
gdb_continue_to_breakpoint "find position where blank needs to be inserted"
68
 
69
# Call some string methods.
70
 
71
gdb_test "print s.length()"             "\\$\[0-9\]+ = 42"
72
gdb_test "print s\[0\]"                 "\\$\[0-9\]+ =.* 'I'"
73
gdb_test "print s\[s.length()-1\]"      "\\$\[0-9\]+ =.* 'g'"
74
gdb_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
 
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.
93
#
94
# gdb_test "print s == \"I am a short stringand now a longer string\"" \
95
#     "\\$\[0-9\]+ = true"
96
 
97
gdb_test "print (const char *) s.substr(0,4)"   "\\$\[0-9\]+ = $hex \"I am\""
98
gdb_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\""

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.