[sanitizer] Add lit.local.cfg for FreeBSD

llvm-svn: 348674
This commit is contained in:
Vitaly Buka 2018-12-08 01:00:45 +00:00
parent 4e23840e30
commit 4ce6d4611b

View File

@ -0,0 +1,9 @@
def getRoot(config):
if not config.parent:
return config
return getRoot(config.parent)
root = getRoot(config)
if root.host_os not in ['FreeBSD']:
config.unsupported = True