gcc-simulate-thread.exp (simulate-thread): Do not run on powerpc*-*-darwin* targets.

gcc/testsuite:

	* lib/gcc-simulate-thread.exp (simulate-thread): Do not run on
	powerpc*-*-darwin* targets.

From-SVN: r181384
This commit is contained in:
Iain Sandoe 2011-11-15 13:16:17 +00:00
parent 69b765189a
commit 6bbb00938c
2 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2011-11-15 Iain Sandoe <iains@gcc.gnu.org>
* lib/gcc-simulate-thread.exp (simulate-thread): Do not run on
powerpc*-*-darwin* targets.
2011-11-15 Torvald Riegel <triegel@redhat.com>
* c-c++-common/tm/trxn-expr-3.c: New test.

View File

@ -26,6 +26,10 @@ proc simulate-thread { args } {
# ??? Exit immediately if this is alpha*-*-linux* target, single-stepping
# executable between ldl_l and stl_c insns in gdb breaks LL/SC chaining.
if { [istarget alpha*-*-linux*] } { return }
# GNU gdb 6.3 on powerpc-darwin also on these (and expect does not appear
# to be able to terminate them).
if { [istarget powerpc*-*-darwin*] } { return }
if { ![isnative] || [is_remote target] } { return }