1# Copyright (C) 2010, 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# This test tries to disassemble over the boundary between two compilation
17# units displaying source lines.  This checks that the disassemble routine
18# can handle our use of line number 0 to mark the end of sequence.
19
20if { [prepare_for_testing disasm-end-cu.exp "disasm-end-cu" {disasm-end-cu-1.c disasm-end-cu-2.c} {debug}] } {
21    return -1
22}
23
24if ![runto_main] {
25    return -1
26}
27
28set main_addr [get_hexadecimal_valueof "&main" "0"]
29set dummy_3_addr [get_hexadecimal_valueof "&dummy_3" "0"]
30
31if {$main_addr == 0 || $dummy_3_addr == 0 || $dummy_3_addr <= $main_addr} {
32    fail "Unable to extract required addresses, or addresses out of order"
33    return -1
34}
35
36gdb_test_multiple "disassemble /m ${main_addr},${dummy_3_addr}" "Disassemble address range with source" {
37    -re "Dump of assembler code from ${main_addr} to ${dummy_3_addr}:\r\nEnd of assembler dump\." {
38        fail "No output from the disassemble command"
39    }
40    -re "Line number 0 out of range;.* has $decimal lines\." {
41        fail "The disassemble command failed"
42    }
43    -re "Dump of assembler code from ${main_addr} to ${dummy_3_addr}:\r\n.*main.*End of assembler dump\." {
44        pass "disassemble command returned some output"
45    }
46    -re ".*$gdb_prompt $" {
47        fail "Unexpected output from disassemble command"
48    }
49}
50