1# Copyright (C) 2021-2023 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# Test expression parsing and evaluation that requires Rust compiler.
17
18load_lib gdb-python.exp
19load_lib rust-support.exp
20if {[skip_rust_tests]} {
21    return
22}
23
24standard_testfile .rs
25if {[prepare_for_testing "failed to prepare" $testfile $srcfile {debug rust}]} {
26    return -1
27}
28
29if { [skip_python_tests] } { return }
30
31set remote_python_file [gdb_remote_download host \
32			    ${srcdir}/${subdir}/${testfile}.py]
33gdb_test_no_output "source ${remote_python_file}" "load python file"
34
35set line [gdb_get_line_number "set breakpoint here"]
36if {![runto ${srcfile}:$line]} {
37    untested "could not run to breakpoint"
38    return -1
39}
40
41gdb_test "print outer" " = pp::Outer \\(x\\(5\\)\\)"
42gdb_test "print outer.0" " = x\\(5\\)"
43
44gdb_test "python print(gdb.selected_frame().language())" "rust"
45