OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gdb-7.1/] [gdb/] [testsuite/] [gdb.base/] [consecutive.exp] - Blame information for rev 842

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 227 jeremybenn
#   Copyright 2001, 2007, 2008, 2009, 2010 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 was written by Michael Snyder. (msnyder@redhat.com)
17
 
18
if $tracelevel then {
19
    strace $tracelevel
20
}
21
 
22
#
23
# Test breakpoints at consecutive instruction addresses.
24
#
25
 
26
set prms_id 0
27
set bug_id 0
28
 
29
set testfile "consecutive"
30
set srcfile ${testfile}.c
31
set binfile ${objdir}/${subdir}/${testfile}
32
 
33
if  { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug nowarnings}] != "" } {
34
    untested consecutive.exp
35
    return -1
36
}
37
 
38
if [get_compiler_info ${binfile}] {
39
    return -1
40
}
41
 
42
gdb_exit
43
gdb_start
44
gdb_reinitialize_dir $srcdir/$subdir
45
gdb_load ${binfile}
46
 
47
if [target_info exists gdb_stub] {
48
    gdb_step_for_stub;
49
}
50
 
51
if ![runto_main] then {
52
    perror "couldn't run to breakpoint"
53
    continue
54
}
55
 
56
set nl "\[\r\n\]+"
57
 
58
gdb_breakpoint foo
59
gdb_test "continue" "Breakpoint $decimal, foo .*" \
60
        "continue to breakpoint in foo"
61
 
62
set bp_addr 0
63
set stop_addr 0
64
 
65
send_gdb "x /2i \$pc\n"
66
gdb_expect {
67
    -re "=> $hex.*${nl}   ($hex).*$gdb_prompt $" {
68
        set bp_addr $expect_out(1,string)
69
        pass "get breakpoint address for foo"
70
    }
71
    -re ".*$gdb_prompt $" {
72
        fail "get breakpoint address for foo"
73
        return 0;
74
    }
75
    timeout {
76
        fail "get breakpoint address for foo (timeout)"
77
        return 0;
78
    }
79
}
80
 
81
gdb_test "break \*$bp_addr" "Breakpoint $decimal at $bp_addr: file .*" \
82
        "set bp, 2nd instr"
83
 
84
send_gdb "step\n"
85
gdb_expect {
86
    -re "Breakpoint $decimal, ($hex) in foo.*$gdb_prompt $" {
87
        set stop_addr $expect_out(1,string)
88
        if [eval expr "$bp_addr == $stop_addr"] then {
89
            pass "stopped at bp, 2nd instr"
90
        } else {
91
            fail "stopped at bp, 2nd instr (wrong address)"
92
        }
93
    }
94
    -re ".*$gdb_prompt $" {
95
        fail "stopped at bp, 2nd instr"
96
    }
97
    timeout {
98
        fail "stopped at bp, 2nd instr (timeout)"
99
 
100
    }
101
}
102
 

powered by: WebSVN 2.1.0

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