diff options
author | Mike Frysinger <vapier@gentoo.org> | 2021-11-10 21:58:08 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-11-10 21:58:08 -0500 |
commit | bebe33486cfbd26fed33caa6c8edc49cbdb74aa4 (patch) | |
tree | 4ed111a37ac8c6ccce828b6789627cd16f69f29e /sim | |
parent | 23ec4a527d8554c7f09ee7683e6474175bd23b72 (diff) | |
download | gdb-bebe33486cfbd26fed33caa6c8edc49cbdb74aa4.zip gdb-bebe33486cfbd26fed33caa6c8edc49cbdb74aa4.tar.gz gdb-bebe33486cfbd26fed33caa6c8edc49cbdb74aa4.tar.bz2 |
sim: testsuite: delete unused arm remote host logic
There's no need to sync testutils.inc with remote hosts. The one
we have in the source tree is all we need and only thing we test.
Delete it to simplify.
Diffstat (limited to 'sim')
-rw-r--r-- | sim/testsuite/arm/allinsn.exp | 8 | ||||
-rw-r--r-- | sim/testsuite/arm/iwmmxt/iwmmxt.exp | 8 | ||||
-rw-r--r-- | sim/testsuite/arm/xscale/xscale.exp | 8 |
3 files changed, 0 insertions, 24 deletions
diff --git a/sim/testsuite/arm/allinsn.exp b/sim/testsuite/arm/allinsn.exp index c4d1cce..4f4f438 100644 --- a/sim/testsuite/arm/allinsn.exp +++ b/sim/testsuite/arm/allinsn.exp @@ -4,10 +4,6 @@ if { [istarget arm*-*-*] } { # all machines set all_machs "xscale" - if [is_remote host] { - remote_download host $srcdir/$subdir/testutils.inc - } - # The .cgs suffix is for "cgen .s". foreach src [lsort [glob -nocomplain $srcdir/$subdir/*.cgs]] { # If we're only testing specific files and this isn't one of them, @@ -18,8 +14,4 @@ if { [istarget arm*-*-*] } { run_sim_test $src $all_machs } - - if [is_remote host] { - remote_file host delete testutils.inc - } } diff --git a/sim/testsuite/arm/iwmmxt/iwmmxt.exp b/sim/testsuite/arm/iwmmxt/iwmmxt.exp index 4aff9c7..058e9e6 100644 --- a/sim/testsuite/arm/iwmmxt/iwmmxt.exp +++ b/sim/testsuite/arm/iwmmxt/iwmmxt.exp @@ -4,10 +4,6 @@ if { [istarget arm*-*-*] } { # all machines set all_machs "xscale" - if [is_remote host] { - remote_download host $srcdir/$subdir/testutils.inc - } - # The .cgs suffix is for "cgen .s". foreach src [lsort [glob -nocomplain $srcdir/$subdir/*.cgs]] { # If we're only testing specific files and this isn't one of them, @@ -18,8 +14,4 @@ if { [istarget arm*-*-*] } { run_sim_test $src $all_machs } - - if [is_remote host] { - remote_file host delete testutils.inc - } } diff --git a/sim/testsuite/arm/xscale/xscale.exp b/sim/testsuite/arm/xscale/xscale.exp index e65a952..394e351 100644 --- a/sim/testsuite/arm/xscale/xscale.exp +++ b/sim/testsuite/arm/xscale/xscale.exp @@ -4,10 +4,6 @@ if { [istarget arm*-*-*] } { # all machines set all_machs "xscale" - if [is_remote host] { - remote_download host $srcdir/$subdir/testutils.inc - } - # The .cgs suffix is for "cgen .s". foreach src [lsort [glob -nocomplain $srcdir/$subdir/*.cgs]] { # If we're only testing specific files and this isn't one of them, @@ -18,8 +14,4 @@ if { [istarget arm*-*-*] } { run_sim_test $src $all_machs } - - if [is_remote host] { - remote_file host delete testutils.inc - } } |