2021-06-28 22:58:58 +08:00
|
|
|
if not config.build_examples or sys.platform in ['win32']:
|
|
|
|
config.unsupported = True
|
2020-08-14 23:03:26 +08:00
|
|
|
|
|
|
|
# Test discovery should ignore subdirectories that contain test inputs.
|
|
|
|
config.excludes = ['Inputs']
|
2021-08-06 17:15:54 +08:00
|
|
|
|
|
|
|
# Tests for the C API are disabled temporarily due to failures on sanitizer bots:
|
|
|
|
# https://green.lab.llvm.org/green/job/clang-stage2-cmake-RgSan/7992/testReport/
|
|
|
|
config.excludes += [
|
|
|
|
'orcv2-cbindings-add-object-file.test',
|
|
|
|
'orcv2-cbindings-basic-usage.test',
|
|
|
|
'orcv2-cbindings-lazy.test',
|
|
|
|
'orcv2-cbindings-reflect-process-symbols.test',
|
|
|
|
'orcv2-cbindings-removable-code.test',
|
|
|
|
]
|