diff options
author | Yao Qi <yao.qi@linaro.org> | 2015-07-07 16:58:19 +0100 |
---|---|---|
committer | Yao Qi <yao.qi@linaro.org> | 2015-07-07 16:58:19 +0100 |
commit | 9fcf688e800e089217ecc8a47b228be180866df8 (patch) | |
tree | 23572564eba5c9afbd57602845482e421cd1a384 /gdb/testsuite/gdb.arch | |
parent | fbd8d50de232dcc7efa5ac4531adb72af2439977 (diff) | |
download | gdb-9fcf688e800e089217ecc8a47b228be180866df8.zip gdb-9fcf688e800e089217ecc8a47b228be180866df8.tar.gz gdb-9fcf688e800e089217ecc8a47b228be180866df8.tar.bz2 |
New proc is_aarch32_target
GDB tests running on arm target should be also run on aarch32
(32-bit mode on aarch64). There should be no difference. It is not
precise to check target triplet to decide which tests should be run,
because if I compiler all the test binary in 32-bit (arm program),
but target triplet is still aarch64, so that these arm specific tests
are skipped.
This patch is to add a new proc is_aarch32_target which return true
if target triplet is arm or the test binary is compiled for arm.
gdb/testsuite:
2015-07-07 Yao Qi <yao.qi@linaro.org>
* lib/gdb.exp (is_aarch32_target): New proc.
* gdb.arch/arm-bl-branch-dest.exp: Check is_aarch32_target
instead of "istarget "arm*-*-*"".
* gdb.arch/arm-disp-step.exp: Likewise.
* gdb.arch/thumb-bx-pc.exp: Likewise.
* gdb.arch/thumb-prologue.exp: Likewise.
* gdb.arch/thumb-singlestep.exp: Likewise.
* gdb.base/disp-step-syscall.exp: Likewise.
* gdb.base/float.exp: Likewise.
Diffstat (limited to 'gdb/testsuite/gdb.arch')
-rw-r--r-- | gdb/testsuite/gdb.arch/arm-bl-branch-dest.exp | 2 | ||||
-rw-r--r-- | gdb/testsuite/gdb.arch/arm-disp-step.exp | 2 | ||||
-rw-r--r-- | gdb/testsuite/gdb.arch/thumb-bx-pc.exp | 2 | ||||
-rw-r--r-- | gdb/testsuite/gdb.arch/thumb-prologue.exp | 2 | ||||
-rw-r--r-- | gdb/testsuite/gdb.arch/thumb-singlestep.exp | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/gdb/testsuite/gdb.arch/arm-bl-branch-dest.exp b/gdb/testsuite/gdb.arch/arm-bl-branch-dest.exp index 9a64054..f35548a 100644 --- a/gdb/testsuite/gdb.arch/arm-bl-branch-dest.exp +++ b/gdb/testsuite/gdb.arch/arm-bl-branch-dest.exp @@ -13,7 +13,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. -if { ![istarget "arm*-*-*"] } { +if { ![is_aarch32_target] } { verbose "Skipping ${gdb_test_file_name}." return } diff --git a/gdb/testsuite/gdb.arch/arm-disp-step.exp b/gdb/testsuite/gdb.arch/arm-disp-step.exp index e191f73..83858ca 100644 --- a/gdb/testsuite/gdb.arch/arm-disp-step.exp +++ b/gdb/testsuite/gdb.arch/arm-disp-step.exp @@ -17,7 +17,7 @@ # Test arm displaced stepping. -if {![istarget "arm*-*-*"]} then { +if {![is_aarch32_target]} then { verbose "Skipping arm displaced stepping tests." return } diff --git a/gdb/testsuite/gdb.arch/thumb-bx-pc.exp b/gdb/testsuite/gdb.arch/thumb-bx-pc.exp index f402339..05be0e1 100644 --- a/gdb/testsuite/gdb.arch/thumb-bx-pc.exp +++ b/gdb/testsuite/gdb.arch/thumb-bx-pc.exp @@ -15,7 +15,7 @@ # Test PC adjustment from Thumb-mode "bx pc" instruction. -if {![istarget arm*-*]} then { +if {![is_aarch32_target]} then { verbose "Skipping ARM tests." return } diff --git a/gdb/testsuite/gdb.arch/thumb-prologue.exp b/gdb/testsuite/gdb.arch/thumb-prologue.exp index 8e3d293..a34beb2 100644 --- a/gdb/testsuite/gdb.arch/thumb-prologue.exp +++ b/gdb/testsuite/gdb.arch/thumb-prologue.exp @@ -15,7 +15,7 @@ # Test ARM/Thumb prologue analyzer. -if {![istarget arm*-*]} then { +if {![is_aarch32_target]} then { verbose "Skipping ARM prologue tests." return } diff --git a/gdb/testsuite/gdb.arch/thumb-singlestep.exp b/gdb/testsuite/gdb.arch/thumb-singlestep.exp index e7a865f..b1d2eb3 100644 --- a/gdb/testsuite/gdb.arch/thumb-singlestep.exp +++ b/gdb/testsuite/gdb.arch/thumb-singlestep.exp @@ -15,7 +15,7 @@ # Test single-stepping into incorrectly marked Thumb routine -if {![istarget arm*-*]} then { +if {![is_aarch32_target]} then { verbose "Skipping ARM tests." return } |