mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-04 16:50:57 +00:00
16 lines
347 B
Plaintext
16 lines
347 B
Plaintext
if { ! [istarget csky-*-*] } {
|
|
return
|
|
}
|
|
|
|
set linux_gnu [expr [istarget csky*-*-linux*]]
|
|
|
|
foreach test [lsort [glob -nocomplain $srcdir/$subdir/*.d]] {
|
|
|
|
if { ! $linux_gnu && ([string match "$srcdir/$subdir/tls-*.d" $test]
|
|
|| [string match "$srcdir/$subdir/got*.d" $test]) } {
|
|
continue
|
|
}
|
|
|
|
run_dump_test [file rootname $test]
|
|
}
|