* lib/gdb.exp (skip_altivec_tests, skip_vsx_tests)
[external/binutils.git] / gdb / testsuite / gdb.cell / gcore.exp
1 # Copyright 2009, 2011-2012 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 # 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
21 load_lib cell.exp
22
23 set testfile "coremaker"
24 set ppu_file "coremaker"
25 set ppu_src ${srcdir}/${subdir}/${ppu_file}.c
26 set ppu_bin ${objdir}/${subdir}/${ppu_file}
27 set spu_file "coremaker-spu"
28 set spu_src ${srcdir}/${subdir}/${spu_file}.c
29 set spu_bin ${objdir}/${subdir}/${spu_file}
30
31 if {![isnative]} then {
32     return 0
33 }
34
35 if {[skip_cell_tests]} {
36     return 0
37 }
38
39 # Compile SPU binary.
40 if { [gdb_compile_cell_spu $spu_src $spu_bin executable {debug}]  != "" } {
41   unsupported "Compiling spu binary failed."
42   return -1
43 }
44 # Compile PPU binary.
45 if { [gdb_cell_embedspu $spu_bin $spu_bin-embed.o {debug}]  != "" } {
46   unsupported "Embedding spu binary failed."
47   return -1
48 }
49 if { [gdb_compile_cell_ppu [list $ppu_src $spu_bin-embed.o] $ppu_bin executable {debug}] != "" } {
50   unsupported "Compiling ppu binary failed."
51   return -1
52 }
53
54 if [get_compiler_info] {
55   return -1
56 }
57
58 gdb_exit
59 gdb_start
60 gdb_reinitialize_dir $srcdir/$subdir
61 gdb_load ${ppu_bin}
62
63 if ![runto_main] then {
64   fail "Can't run to main"
65   return 0
66 }
67
68 delete_breakpoints
69
70 gdb_test "continue" ".*Aborted.*"
71
72 set escapedfilename [string_to_regexp ${objdir}/${subdir}/gcore.test]
73
74 gdb_test_multiple "gcore ${objdir}/${subdir}/gcore.test" \
75         "save a corefile" \
76 {
77   -re "Saved corefile ${escapedfilename}\[\r\n\]+$gdb_prompt $" {
78     pass "save a corefile"
79   }
80   -re "Can't create a corefile\[\r\n\]+$gdb_prompt $" {
81     unsupported "save a corefile"
82     return -1
83   }
84 }
85
86
87 # Now restart gdb and load the corefile.
88 gdb_exit
89 gdb_start
90 gdb_reinitialize_dir $srcdir/$subdir
91 gdb_load ${ppu_bin}
92
93 send_gdb "core-file $objdir/$subdir/gcore.test\n"
94 gdb_expect {
95     -re "Core was generated by .*coremaker.*\r\n\#0  .*\(\).*\r\n$gdb_prompt $" {
96         pass "core-file command"
97     }
98     -re "Core was generated by .*\r\n\#0  .*\(\).*\r\n$gdb_prompt $" {
99         pass "core-file command (with bad program name)"
100     }
101     -re ".*$gdb_prompt $"       { fail "core-file command" }
102     timeout                     { fail "(timeout) core-file command" }
103 }
104
105 gdb_test "t 6" "Switching to thread 6.*"
106 gdb_test "backtrace" ".*abort.*main.*at.*$ppu_file.c.*"
107
108 for {set thread_id 1} {$thread_id < 6} {incr thread_id} {
109   gdb_test "t $thread_id" \
110            "Switching to thread $thread_id.*" \
111            "switch to thread $thread_id"
112   gdb_test "backtrace" \
113            ".*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.*" \
114            "backtrace in thread $thread_id"
115 }
116
117 gdb_exit
118
119 return 0