1 # Copyright
(C
) 2017-2023 Free Software Foundation
, Inc.
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.
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.
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
/>.
16 # Test symbol lookup when there are multiple circular imports.
18 load_lib
"d-support.exp"
21 require allow_d_tests dwarf2_support
23 standard_testfile
watch-loc.c
watch-loc
-dw.S
25 lassign
[function_range _Dmain $
{srcdir
}/$
{subdir
}/$
{srcfile
}] \
26 dmain_start dmain_length
29 # Make some DWARF
for the test.
30 set asm_file
[standard_output_file $srcfile2
]
31 Dwarf
::assemble $asm_file
{
32 global dmain_start dmain_length
34 cu
{ label cu_start
} {
38 declare_labels watch_module_label watch_struct_label
40 watch_module_label
: module
{
43 watch_struct_label
: structure_type
{
50 {type
:$watch_struct_label
}
52 addr
[gdb_target_symbol my_data
]
58 {MACRO_AT_func
{ "_Dmain" }}
59 {external
1 flag_present
}
66 arange
{} $dmain_start $dmain_length
70 if { [prepare_for_testing
"failed to prepare" ${testfile} \
71 [list $srcfile $asm_file
] {nodebug
}] } {
75 gdb_test_no_output
"set language d"
77 if {![runto
"_Dmain"]} {
81 #
watch -l will rewrite the expression to
"*(watch.tstruct *) 0x12345",
82 # this should not cause syntax error in the cast expression.
83 gdb_test
"watch -l my_data" ".*atchpoint \[0-9\]+: -location my_data"
85 # Same test as above
, but done explicitly.
86 gdb_test
"print *(watch.tstruct *) &my_data" "{<No data fields>}"