Files
Mike Frysinger d07ada6f5a sim: testsuite: replace global_ld_options with LDFLAGS_FOR_TARGET
Only a few tests actually use global_ld_options, but we can replace the
sim-specific settings with the dejagnu common LDFLAGS_FOR_TARGET and get
the same result.
2021-11-26 19:03:13 -05:00

25 lines
540 B
Plaintext

# eBPF simulator testsuite
if [istarget bpf-unknown-none] {
# all machines
set all_machs "bpf"
global global_sim_options
if ![info exists global_sim_options] {
set global_sim_options "--memory-size=4Mb"
}
global LDFLAGS_FOR_TARGET
set LDFLAGS_FOR_TARGET "-Ttext=0x0"
foreach src [lsort [glob -nocomplain $srcdir/$subdir/*.s]] {
# If we're only testing specific files and this isn't one of them,
# skip it.
if ![runtest_file_p $runtests $src] {
continue
}
run_sim_test $src $all_machs
}
}