1import sys 2 3if config.root.host_arch not in ['i386', 'x86', 'x86_64', 'AMD64']: 4 config.unsupported = True 5 6# FIXME: These tests don't pass with the COFF rtld. 7if sys.platform == 'win32': 8 config.unsupported = True 9
1import sys 2 3if config.root.host_arch not in ['i386', 'x86', 'x86_64', 'AMD64']: 4 config.unsupported = True 5 6# FIXME: These tests don't pass with the COFF rtld. 7if sys.platform == 'win32': 8 config.unsupported = True 9