refactor(threads): don't run tests on windows

This commit is contained in:
Anthony Green 2025-06-08 08:00:36 -04:00
parent 5be311bed5
commit 668e2162e8

View File

@ -34,12 +34,8 @@ if { [string match $compiler_vendor "microsoft"] } {
set tlist [lsort [glob -nocomplain -- $srcdir/$subdir/*.c]]
run-many-tests $tlist $additional_options
set tlist [lsort [glob -nocomplain -- $srcdir/$subdir/*.cc]]
# No C++ for or1k
if { [istarget "or1k-*-*"] } {
# No pthreads for windows
if { [string match $compiler_vendor "microsoft"] } {
foreach test $tlist {
unsupported "$test"
}