sim: cris: always search for local rvdummy tool
authorMike Frysinger <vapier@gentoo.org>
Sat, 27 Nov 2021 06:22:30 +0000 (01:22 -0500)
committerMike Frysinger <vapier@gentoo.org>
Sat, 27 Nov 2021 06:26:41 +0000 (01:26 -0500)
If the board info sets the sim to a basename that is found via $PATH
(which is the default dejagnu behavior), the logic here to use its
dirname to find rvdummy fails because it looks for `./rvdummy`.  So
switch it to always use the local build of rvdummy which is the one
we want to be testing against in the first place.

If we get a request for testing against a different setup, we can
figure out & document the needs at that point, and then setup some
config knobs to control it.

sim/testsuite/cris/hw/rv-n-cris/rvc.exp

index 7c136db95309adc9ff8ca17638e1605911c8d49e..905a2da92ecebf0fc6a44c73ddf42a3294c39b2c 100644 (file)
@@ -122,14 +122,8 @@ if [istarget cris*-*-*] {
     global SIMFLAGS_FOR_TARGET
     set has_rv_and_cris [sim_has_rv_and_cris]
 
-    # See the logic in sim-defs.exp for more details.
-    set sim [board_info target sim]
-    if [string equal "" $sim] {
-       global builddir
-       set rvdummy "$builddir/cris/rvdummy"
-    } else {
-       set rvdummy "[file dirname [board_info target sim]]/rvdummy"
-    }
+    global builddir
+    set rvdummy "$builddir/cris/rvdummy"
 
     # All machines we test and the corresponding assembler option.
     # We'll only ever test v10 and higher here.