| OLD | NEW |
| 1 # Copyright 2008-2012 Free Software Foundation, Inc. | 1 # Copyright 2008-2012 Free Software Foundation, Inc. |
| 2 # | 2 # |
| 3 # This program is free software; you can redistribute it and/or modify | 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 | 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 | 5 # the Free Software Foundation; either version 3 of the License, or |
| 6 # (at your option) any later version. | 6 # (at your option) any later version. |
| 7 # | 7 # |
| 8 # This program is distributed in the hope that it will be useful, | 8 # This program is distributed in the hope that it will be useful, |
| 9 # but WITHOUT ANY WARRANTY; without even the implied warranty of | 9 # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 11 # GNU General Public License for more details. | 11 # GNU General Public License for more details. |
| 12 # | 12 # |
| 13 # You should have received a copy of the GNU General Public License | 13 # You should have received a copy of the GNU General Public License |
| 14 # along with this program; if not, write to the Free Software | 14 # along with this program; if not, write to the Free Software |
| 15 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | 15 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
| 16 # | 16 # |
| 17 # This file is part of the gdb testsuite. | 17 # This file is part of the gdb testsuite. |
| 18 | 18 |
| 19 if $tracelevel { | |
| 20 strace $tracelevel | |
| 21 } | |
| 22 | |
| 23 # Test single stepping through atomic sequences beginning with | 19 # Test single stepping through atomic sequences beginning with |
| 24 # a lwarx/ldarx instruction and ending with a stwcx/stdcx | 20 # a lwarx/ldarx instruction and ending with a stwcx/stdcx |
| 25 # instruction. | 21 # instruction. |
| 26 | 22 |
| 27 | 23 |
| 28 if {![istarget "powerpc*"] || ![is_lp64_target]} { | 24 if {![istarget "powerpc*"] || ![is_lp64_target]} { |
| 29 verbose "Skipping testing of powerpc64 single stepping over atomic sequences
." | 25 verbose "Skipping testing of powerpc64 single stepping over atomic sequences
." |
| 30 return | 26 return |
| 31 } | 27 } |
| 32 | 28 |
| (...skipping 22 matching lines...) Expand all Loading... |
| 55 "Set the breakpoint at the start of the sequence" | 51 "Set the breakpoint at the start of the sequence" |
| 56 | 52 |
| 57 gdb_test continue "Continuing.*Breakpoint $decimal.*" \ | 53 gdb_test continue "Continuing.*Breakpoint $decimal.*" \ |
| 58 "Continue until breakpoint" | 54 "Continue until breakpoint" |
| 59 | 55 |
| 60 gdb_test next ".*__asm __volatile.*" \ | 56 gdb_test next ".*__asm __volatile.*" \ |
| 61 "Step through the lwarx/stwcx sequence" | 57 "Step through the lwarx/stwcx sequence" |
| 62 | 58 |
| 63 gdb_test next ".*return 0.*" \ | 59 gdb_test next ".*return 0.*" \ |
| 64 "Step through the ldarx/stdcx sequence" | 60 "Step through the ldarx/stdcx sequence" |
| OLD | NEW |