Add translations for various sub-directories
[binutils-gdb.git] / gdb / testsuite / gdb.ada / lazy-string.exp
blob553e2b5fff3ce8880c5bf4e3199d52b2f7642806
1 # Copyright 2024 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 UTF-8 lazy strings in Ada.
18 load_lib "ada.exp"
19 load_lib gdb-python.exp
21 require allow_ada_tests allow_python_tests
23 standard_ada_testfile main
25 # Enable basic use of UTF-8.  LC_ALL gets reset for each testfile.
26 setenv LC_ALL C.UTF-8
28 if {[gdb_compile_ada "${srcfile}" "${binfile}" executable {debug}] != ""} {
29     return -1
32 clean_restart ${testfile}
34 set bp_location [gdb_get_line_number "STOP" ${testdir}/main.adb]
35 if {![runto "main.adb:$bp_location"]} {
36     return
39 gdb_test_no_output "python arg = gdb.parse_and_eval('arg.all')"
41 gdb_test "python print(str(arg.lazy_string(encoding='utf-8')))" \
42     "\"funçao\"" \
43     "print lazy string using utf-8"