mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-06 12:09:26 +08:00
b42f20d2ac
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.
18 lines
365 B
Plaintext
18 lines
365 B
Plaintext
# Hitachi H8/300 (h, s, sx) simulator testsuite
|
|
|
|
sim_init
|
|
|
|
if {[istarget *]} {
|
|
set all_machs "h8300 h8300h h8300s h8sx"
|
|
|
|
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
|
|
}
|
|
}
|