]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.dlang/watch-loc.exp
Update copyright year range in header of all files managed by GDB
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.dlang / watch-loc.exp
CommitLineData
1d506c26 1# Copyright (C) 2017-2024 Free Software Foundation, Inc.
662659a1
IB
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# Test symbol lookup when there are multiple circular imports.
17
18load_lib "d-support.exp"
19load_lib "dwarf.exp"
20
f3864a5b 21require allow_d_tests dwarf2_support
662659a1
IB
22
23standard_testfile watch-loc.c watch-loc-dw.S
24
945ff6e2
TV
25lassign [function_range _Dmain ${srcdir}/${subdir}/${srcfile}] \
26 dmain_start dmain_length
27
28
662659a1
IB
29# Make some DWARF for the test.
30set asm_file [standard_output_file $srcfile2]
31Dwarf::assemble $asm_file {
426f7bbf
TV
32 global dmain_start dmain_length
33
34 cu { label cu_start } {
662659a1
IB
35 compile_unit {
36 {language @DW_LANG_D}
37 } {
38 declare_labels watch_module_label watch_struct_label
39
40 watch_module_label: module {
41 {name watch}
42 } {
43 watch_struct_label: structure_type {
44 {name tstruct}
45 {byte_size 1 data1}
46 }
47
48 tag_variable {
49 {name my_data}
50 {type :$watch_struct_label}
51 {location {
52 addr [gdb_target_symbol my_data]
53 } SPECIAL_expr}
54 {external 1 flag}
55 }
56
57 subprogram {
10da644d 58 {MACRO_AT_func { "_Dmain" }}
662659a1
IB
59 {external 1 flag_present}
60 }
61 }
62 }
63 }
662659a1 64
426f7bbf 65 aranges {} cu_start {
590d3faa 66 arange {} $dmain_start $dmain_length
426f7bbf
TV
67 }
68}
945ff6e2 69
662659a1 70if { [prepare_for_testing "failed to prepare" ${testfile} \
426f7bbf 71 [list $srcfile $asm_file] {nodebug}] } {
662659a1
IB
72 return -1
73}
74
75gdb_test_no_output "set language d"
76
77if {![runto "_Dmain"]} {
78 return -1
79}
80
81# watch -l will rewrite the expression to "*(watch.tstruct *) 0x12345",
82# this should not cause syntax error in the cast expression.
83gdb_test "watch -l my_data" ".*atchpoint \[0-9\]+: -location my_data"
84
85# Same test as above, but done explicitly.
86gdb_test "print *(watch.tstruct *) &my_data" "{<No data fields>}"