21 lines · plain
1import sys2 3if config.root.host_arch not in [4 "aarch64",5 "arm64",6 "i386",7 "x86",8 "x86_64",9 "AMD64",10 "mips",11 "mipsel",12 "mips64",13 "mips64el",14 "loongarch64",15]:16 config.unsupported = True17 18# FIXME: These tests don't pass with the COFF rtld.19if sys.platform == "win32":20 config.unsupported = True21