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

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [gnu-src/] [gdb-6.8/] [pre-binutils-2.20.1-sync/] [gdb/] [testsuite/] [gdb.cp/] [method2.exp] - Blame information for rev 291

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 24 jeremybenn
# Copyright 2007, 2008 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 .
15
 
16
# This file is part of the gdb testsuite
17
 
18
# This tests setting a break in an ambiguous c++ method with
19
# current_language set to c.
20
 
21
if { [skip_cplus_tests] } { continue }
22
 
23
set testfile "method2"
24
set srcfile ${testfile}.cc
25
set binfile ${objdir}/${subdir}/${testfile}
26
 
27
if  { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug c++}] != "" } {
28
     untested method2.exp
29
     return -1
30
}
31
 
32
if [get_compiler_info $binfile "c++"] {
33
  return -1
34
}
35
 
36
gdb_exit
37
gdb_start
38
gdb_reinitialize_dir $srcdir/$subdir
39
gdb_load ${binfile}
40
 
41
if ![runto_main] then {
42
    perror "couldn't run to breakpoint"
43
    continue
44
}
45
 
46
proc test_break { lang } {
47
    global gdb_prompt
48
 
49
    gdb_test "set lang $lang" \
50
        "" \
51
        "setting language $lang"
52
 
53
    send_gdb "break A::method\n"
54
    gdb_expect {
55
        -re ".0. cancel.*\[\r\n\]*.1. all.*\[\r\n\]*.2. A::method\\(A\\*\\) at .*\[\r\n\]*.3. A::method\\(int\\) at .*\[\r\n\]*\[\r\n\]*.4. A::method\\(\\) at .*\[\r\n\]*> $" {
56
            gdb_test "0" \
57
                "canceled" \
58
                "breaking in method ($lang)"
59
        }
60
        -re ".*$gdb_prompt $" { fail "breaking in method ($lang)" }
61
        default { fail "breaking in method ($lang) (timeout)" }
62
    }
63
}
64
 
65
test_break "c"
66
test_break "c++"
67
 
68
gdb_continue_to_end "continue to end"

powered by: WebSVN 2.1.0

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