Skip to content

Commit

Permalink
* lib/gcc-simulate-thread.exp (simulate-thread): Do not run on
Browse files Browse the repository at this point in the history
	alpha*-*-linux* targets.



git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@181318 138bc75d-0d04-0410-961f-82ee72b054a4
  • Loading branch information
uros committed Nov 12, 2011
1 parent 162387c commit bad7098
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions gcc/testsuite/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2011-11-12 Uros Bizjak <ubizjak@gmail.com>

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

2011-11-12 Iain Sandoe <iains@gcc.gnu.org>

PR testsuite/51059
Expand Down
5 changes: 5 additions & 0 deletions gcc/testsuite/lib/gcc-simulate-thread.exp
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@
# Call 'fail' if a given test printed "FAIL:", otherwise call 'pass'.

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 }

if { ![isnative] || [is_remote target] } { return }

if { [llength $args] == 1 } {
Expand Down

0 comments on commit bad7098

Please sign in to comment.