Update copyright year range in all GDB files.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.cell / core.exp
CommitLineData
42a4f53d 1# Copyright 2009-2019 Free Software Foundation, Inc.
1ea34204
UW
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# Contributed by Markus Deuling <deuling@de.ibm.com>.
17#
18# Testsuite for Cell Broadband Engine combined debugger
19# This testcases tests mixed-architecture core file support
20
21load_lib cell.exp
22
23set testfile "coremaker"
24set ppu_file "coremaker"
25set ppu_src ${srcdir}/${subdir}/${ppu_file}.c
617cd4bc 26set ppu_bin [standard_output_file ${ppu_file}]
1ea34204
UW
27set spu_file "coremaker-spu"
28set spu_src ${srcdir}/${subdir}/${spu_file}.c
617cd4bc 29set spu_bin [standard_output_file ${spu_file}]
1ea34204
UW
30
31if {![isnative]} then {
32 return 0
33}
34
35if {[skip_cell_tests]} {
36 return 0
37}
38
39# Compile SPU binary.
40if { [gdb_compile_cell_spu $spu_src $spu_bin executable {debug}] != "" } {
bc6c7af4 41 unsupported "compiling spu binary failed."
1ea34204
UW
42 return -1
43}
44# Compile PPU binary.
45if { [gdb_cell_embedspu $spu_bin $spu_bin-embed.o {debug}] != "" } {
bc6c7af4 46 unsupported "embedding spu binary failed."
1ea34204
UW
47 return -1
48}
49if { [gdb_compile_cell_ppu [list $ppu_src $spu_bin-embed.o] $ppu_bin executable {debug}] != "" } {
bc6c7af4 50 unsupported "compiling ppu binary failed."
1ea34204
UW
51 return -1
52}
53
4c93b1db 54if [get_compiler_info] {
1ea34204
UW
55 return -1
56}
57
58# Run program to generate a core file -- see gdb.base/corefile.exp
59set found 0
60set coredir "${objdir}/${subdir}/coredir.[getpid]"
61file mkdir $coredir
62catch "system \"(cd ${coredir}; ulimit -c unlimited; ${ppu_bin}; true) >/dev/null 2>&1\""
63set names [glob -nocomplain -directory $coredir core.*]
64if {[llength $names] == 1} {
65 set corefile [file join $coredir [lindex $names 0]]
66 remote_exec build "mv $corefile ${objdir}/${subdir}/corefile"
67 set found 1
68}
69remote_exec build "rmdir $coredir"
70if { $found == 0 } {
71 warning "can't generate a core file - core tests suppressed - check ulimit -c"
72 return 0
73}
74
75gdb_exit
76gdb_start
77gdb_reinitialize_dir $srcdir/$subdir
78gdb_load ${ppu_bin}
79
80send_gdb "core-file $objdir/$subdir/corefile\n"
81gdb_expect {
82 -re "Core was generated by .*coremaker.*\r\n\#0 .*\(\).*\r\n$gdb_prompt $" {
83 pass "core-file command"
84 }
85 -re "Core was generated by .*\r\n\#0 .*\(\).*\r\n$gdb_prompt $" {
86 pass "core-file command (with bad program name)"
87 }
88 -re ".*$gdb_prompt $" { fail "core-file command" }
89 timeout { fail "(timeout) core-file command" }
90}
91
92gdb_test "backtrace" ".*abort.*main.*at.*$ppu_file.c.*"
93
94for {set thread_id 2} {$thread_id < 7} {incr thread_id} {
95 gdb_test "t $thread_id" \
96 "Switching to thread $thread_id.*" \
97 "switch to thread $thread_id"
98 gdb_test "backtrace" \
99 ".*terminal_func.*factorial_func.*value=1.*factorial_func.*value=2.*factorial_func.*value=3.*factorial_func.*value=4.*factorial_func.*value=5.*factorial_func.*value=6.*main.*speid.*argp.*envp.*at.*$spu_file.c.*<cross-architecture call>.*spe_context_run.*spe_thread.*at.*$ppu_file.c.*" \
100 "backtrace in thread $thread_id"
101}
102
103gdb_exit
104
105return 0
This page took 1.268844 seconds and 4 git commands to generate.