]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.base/nostdlib.exp
RISC-V: PR31733, Change initial CFI operation from DW_CFA_def_cfa_register to DW_CFA_...
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.base / nostdlib.exp
CommitLineData
1d506c26 1# Copyright 2010-2024 Free Software Foundation, Inc.
628fe4e4
JK
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
822bd149 16standard_testfile .c
628fe4e4 17
a1e28cb2
UW
18# If we're using a stub, breakpoints at the entry point will not trigger.
19# See also the comment in break-entry.exp.
20
8ce7423f 21require !use_gdb_stub
a1e28cb2 22
628fe4e4
JK
23# default_target_compile would otherwise add "-lm" making the testcase
24# dependent on whether the system libraries are already prelinked.
25# prelink: Could not set /lib64/libm-2.11.1.so owner or mode: Operation not permitted
26set compile {
27 gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug additional_flags=-nostdlib}
28}
29set board [target_info name]
30if [board_info $board exists mathlib] {
31 set mathlib [board_info $dest mathlib]
32 set_board_info mathlib ""
33 set err [eval $compile]
34 set_board_info mathlib $mathlib
35} else {
36 set_board_info mathlib ""
37 set err [eval $compile]
38 unset_board_info mathlib
39}
40if {$err != ""} {
5b362f04 41 untested "failed to compile"
628fe4e4
JK
42 return -1
43}
44
822bd149 45clean_restart $binfile
628fe4e4
JK
46
47gdb_breakpoint "*marker"
48gdb_breakpoint "*_start"
49
50gdb_run_cmd
51
52# Breakpoint 2, Stopped due to shared library event
53# _start () at ./gdb.base/nostdlib.c:20
54gdb_test "" {Breakpoint [0-9]+, .*_start .*} "stop at run"
55
56gdb_test "continue" {Breakpoint [0-9]+, marker .*} "continue to marker"