aboutsummaryrefslogtreecommitdiff
path: root/sim/testsuite/sh
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2021-06-23 23:23:27 -0400
committerMike Frysinger <vapier@gentoo.org>2022-02-16 00:36:47 -0500
commitd0b2f561a1e8ef6ecf87a99f220262d58538c750 (patch)
tree551de4314e04ce7f888ab2fa58cb34f3912ff482 /sim/testsuite/sh
parentbc85f56bfda7162688b9bea8dd942ec473bdb21b (diff)
downloadbinutils-d0b2f561a1e8ef6ecf87a99f220262d58538c750.zip
binutils-d0b2f561a1e8ef6ecf87a99f220262d58538c750.tar.gz
binutils-d0b2f561a1e8ef6ecf87a99f220262d58538c750.tar.bz2
sim: testsuite: cleanup the istarget * logic
Now that the multitarget testing has settled, clean up the cases where istarget * is used. This ends up being mostly style unindenting.
Diffstat (limited to 'sim/testsuite/sh')
-rw-r--r--sim/testsuite/sh/allinsn.exp6
1 files changed, 2 insertions, 4 deletions
diff --git a/sim/testsuite/sh/allinsn.exp b/sim/testsuite/sh/allinsn.exp
index 69d324a..4eabdf2 100644
--- a/sim/testsuite/sh/allinsn.exp
+++ b/sim/testsuite/sh/allinsn.exp
@@ -14,8 +14,6 @@ foreach opt $board_variant_list {
}
}
-if [istarget *] {
- foreach src [lsort [glob -nocomplain $srcdir/$subdir/*.s]] {
- run_sim_test $src $all_machs
- }
+foreach src [lsort [glob -nocomplain $srcdir/$subdir/*.s]] {
+ run_sim_test $src $all_machs
}