forked from Imagelibrary/binutils-gdb
We'll rely on the toolchain probing to determine whether each arch's tests can be run rather the current configure target. This allows testing all of the ports in a multitarget configuration. For now, we don't reformat the files entirely to make it easier to review, and in case we need to make adjustments. Once this feels like it's stable, we can flatten the code a bit by removing the if statement entirely.
25 lines
491 B
Plaintext
25 lines
491 B
Plaintext
# eBPF simulator testsuite
|
|
|
|
sim_init
|
|
|
|
if [istarget *] {
|
|
# all machines
|
|
set all_machs "bpf"
|
|
|
|
global SIMFLAGS_FOR_TARGET
|
|
set SIMFLAGS_FOR_TARGET "--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
|
|
}
|
|
}
|