mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-09-09 19:12:24 +08:00

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.
21 lines
445 B
Plaintext
21 lines
445 B
Plaintext
# Example synacor simulator testsuite.
|
|
|
|
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
|
|
}
|
|
|
|
unset LDFLAGS_FOR_TARGET
|
|
}
|