From 6bbb00938cd2301cd89a67c57be6ecacf79f66aa Mon Sep 17 00:00:00 2001 From: Iain Sandoe Date: Tue, 15 Nov 2011 13:16:17 +0000 Subject: [PATCH] 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 --- gcc/testsuite/ChangeLog | 5 +++++ gcc/testsuite/lib/gcc-simulate-thread.exp | 4 ++++ 2 files changed, 9 insertions(+) diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index a6446452a343..c7a33b10bc16 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2011-11-15 Iain Sandoe + + * lib/gcc-simulate-thread.exp (simulate-thread): Do not run on + powerpc*-*-darwin* targets. + 2011-11-15 Torvald Riegel * c-c++-common/tm/trxn-expr-3.c: New test. diff --git a/gcc/testsuite/lib/gcc-simulate-thread.exp b/gcc/testsuite/lib/gcc-simulate-thread.exp index b2487d2d8c7a..1fea404a9c75 100644 --- a/gcc/testsuite/lib/gcc-simulate-thread.exp +++ b/gcc/testsuite/lib/gcc-simulate-thread.exp @@ -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 } -- 2.47.3