[PATCH] D26162: [tsan] Enable the tsan/libcxx/ testcase(s) on Darwin

Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Oct 31 13:59:52 PDT 2016


This revision was automatically updated to reflect the committed changes.
Closed by commit rL285634: [tsan] Enable the tsan/libcxx/ testcase(s) on Darwin (authored by kuba.brecka).

Changed prior to commit:
  https://reviews.llvm.org/D26162?vs=76468&id=76473#toc

Repository:
  rL LLVM

https://reviews.llvm.org/D26162

Files:
  compiler-rt/trunk/test/tsan/libcxx/lit.local.cfg


Index: compiler-rt/trunk/test/tsan/libcxx/lit.local.cfg
===================================================================
--- compiler-rt/trunk/test/tsan/libcxx/lit.local.cfg
+++ compiler-rt/trunk/test/tsan/libcxx/lit.local.cfg
@@ -5,6 +5,8 @@
 
 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
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D26162.76473.patch
Type: text/x-patch
Size: 519 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20161031/78debf3b/attachment.bin>


More information about the llvm-commits mailing list