Commit df69b58c by Ben Elliston Committed by Ben Elliston

gcc-defs.exp (${tool}_check_compile): xfail test cases that fail to link due to…

gcc-defs.exp (${tool}_check_compile): xfail test cases that fail to link due to relocation overflows on spu-*-*.

	* lib/gcc-defs.exp (${tool}_check_compile): xfail test cases that
	fail to link due to relocation overflows on spu-*-*.

From-SVN: r119270
parent 84608df3
2006-11-28 Ben Elliston <bje@au.ibm.com>
* lib/gcc-defs.exp (${tool}_check_compile): xfail test cases that
fail to link due to relocation overflows on spu-*-*.
2006-11-27 Michael Matz <matz@suse.de> 2006-11-27 Michael Matz <matz@suse.de>
Andreas Krebbel <krebbel1@de.ibm.com> Andreas Krebbel <krebbel1@de.ibm.com>
...@@ -24,6 +24,12 @@ proc ${tool}_check_compile {testcase option objname gcc_output} { ...@@ -24,6 +24,12 @@ proc ${tool}_check_compile {testcase option objname gcc_output} {
global tool global tool
set fatal_signal "*cc: Internal compiler error: program*got fatal signal" set fatal_signal "*cc: Internal compiler error: program*got fatal signal"
if {[istarget spu-*-*] && [string match "*exceeds local store range*" $gcc_output]} {
setup_xfail [istarget]
${tool}_fail $testcase $option
return 0
}
if [string match "$fatal_signal 6" $gcc_output] then { if [string match "$fatal_signal 6" $gcc_output] then {
${tool}_fail $testcase "Got Signal 6, $option" ${tool}_fail $testcase "Got Signal 6, $option"
return 0 return 0
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment