diff options
Diffstat (limited to 'test/tsan/libcxx/lit.local.cfg')
-rw-r--r-- | test/tsan/libcxx/lit.local.cfg | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/tsan/libcxx/lit.local.cfg b/test/tsan/libcxx/lit.local.cfg index 202b44ee116d9..3ee705736e6fe 100644 --- a/test/tsan/libcxx/lit.local.cfg +++ b/test/tsan/libcxx/lit.local.cfg @@ -5,6 +5,8 @@ def getRoot(config): root = getRoot(config) -if not root.has_libcxx: +# Only run if we have an instrumented libcxx. On Darwin, run always (we have +# interceptors to support the system-provided libcxx). +if not root.has_libcxx and root.host_os != 'Darwin': config.unsupported = True |