Automatic Copyright Year update after running gdb/copyright.py
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.go / hello.exp
CommitLineData
a766d390
DE
1# This testcase is part of GDB, the GNU debugger.
2
88b9d363 3# Copyright 2012-2022 Free Software Foundation, Inc.
a766d390
DE
4#
5# This program is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation; either version 3 of the License, or
8# (at your option) any later version.
9#
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13# GNU General Public License for more details.
14#
15# You should have received a copy of the GNU General Public License
16# along with this program. If not, see <http://www.gnu.org/licenses/>.
17
18# Basic tests.
19
20load_lib "go.exp"
21
22if { [skip_go_tests] } { continue }
d7445728 23if { [support_go_compile] == 0 } { continue }
a766d390 24
8a3e1f8d 25standard_testfile .go
a766d390 26
5b362f04 27if { [prepare_for_testing "failed to prepare" ${testfile} ${srcfile} {debug go}] } {
a766d390
DE
28 return -1
29}
30
31set bp_location1 [gdb_get_line_number "set breakpoint 1 here"]
a766d390
DE
32
33if { [go_runto_main] < 0 } {
5b362f04 34 untested "could not run to main"
a766d390
DE
35 return -1
36}
37
04ff1e61
AA
38if { [gdb_breakpoint ${srcfile}:${bp_location1}] } {
39 pass "setting breakpoint 1"
a766d390
DE
40}
41
cdc7edd7 42gdb_test "cont" "Breakpoint .*:${bp_location1}.*" "going to first breakpoint"
a766d390
DE
43
44gdb_test "print st" \
45 ".* = $hex \"Hello, world!\"" \
bb95117e 46 "string after assignment check"
This page took 1.205851 seconds and 4 git commands to generate.