mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-21 04:42:53 +08:00
2b9c7c262e
In a multitarget build, we process all targets in order, so make sure the toolchain settings from one don't leak into the next.
21 lines
425 B
Plaintext
21 lines
425 B
Plaintext
# Example synacor simulator testsuite.
|
|
|
|
sim_init
|
|
|
|
if [istarget *] {
|
|
# All machines.
|
|
set all_machs "example"
|
|
|
|
global LDFLAGS_FOR_TARGET
|
|
set LDFLAGS_FOR_TARGET "-Ttext=0"
|
|
|
|
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
|
|
}
|
|
}
|