mirror of
https://github.com/intel/llvm.git
synced 2026-01-26 12:26:52 +08:00
Fix typo
llvm-svn: 349861
This commit is contained in:
@@ -810,6 +810,6 @@ def skipUnlessFeature(feature):
|
||||
def skipIfSanitized(func):
|
||||
"""Skip this test if the environment is set up to run LLDB itself under ASAN."""
|
||||
def is_sanitized():
|
||||
return (('DYLD_INSERT_LIBRARIES' in os.env) and
|
||||
'libclang_rt.asan' in os.env['DYLD_INSERT_LIBRARIES'])
|
||||
return (('DYLD_INSERT_LIBRARIES' in os.environ) and
|
||||
'libclang_rt.asan' in os.environ['DYLD_INSERT_LIBRARIES'])
|
||||
return skipTestIfFn(is_sanitized)(func)
|
||||
|
||||
Reference in New Issue
Block a user