diff options
author | Tom Tromey <tom@tromey.com> | 2023-01-21 22:41:25 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2023-01-25 09:02:11 -0700 |
commit | 73c06197483d1dcb82d17580f60d94ebfecf7a3b (patch) | |
tree | 0428d72d316845e4d9518dd0fce136477f358f83 /gdb/testsuite/gdb.disasm/am33.exp | |
parent | 9c5221887f011a0dec54dbcdaf833e913cb68429 (diff) | |
download | fsf-binutils-gdb-73c06197483d1dcb82d17580f60d94ebfecf7a3b.zip fsf-binutils-gdb-73c06197483d1dcb82d17580f60d94ebfecf7a3b.tar.gz fsf-binutils-gdb-73c06197483d1dcb82d17580f60d94ebfecf7a3b.tar.bz2 |
Use require with istarget
This changes many tests to use require when checking 'istarget'. A
few of these conversions were already done in earlier patches.
No change was needed to 'require' to make this work, due to the way it
is written. I think the result looks pretty clear, and it has the
bonus of helping to ensure that the reason that a test is skipped is
always logged.
Diffstat (limited to 'gdb/testsuite/gdb.disasm/am33.exp')
-rw-r--r-- | gdb/testsuite/gdb.disasm/am33.exp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/gdb/testsuite/gdb.disasm/am33.exp b/gdb/testsuite/gdb.disasm/am33.exp index e9898ce..a278f39 100644 --- a/gdb/testsuite/gdb.disasm/am33.exp +++ b/gdb/testsuite/gdb.disasm/am33.exp @@ -16,10 +16,7 @@ # This file was written by Jeff Law. (law@cygnus.com) -if ![istarget "mn10300*-*-*"] { - verbose "Tests ignored for all but mn10300 based targets." - return -} +require {istarget "mn10300*-*-*"} global exec_output |