[Lldb-commits] [PATCH] Skip AsanTestCase and AsanTestReportDataCase on Darwin
Ilia K
ki.stfu at gmail.com
Tue Mar 10 08:45:16 PDT 2015
Enable AsanTestCase and AsanTestReportDataCase tests on Darwin
http://reviews.llvm.org/D7958
Files:
test/lldbtest.py
Index: test/lldbtest.py
===================================================================
--- test/lldbtest.py
+++ test/lldbtest.py
@@ -1526,6 +1526,11 @@
path = os.path.join(lldb_root_path, p)
if os.path.exists(path):
return path
+
+ # Tries to find clang at the same folder as the lldb
+ path = os.path.join(os.path.dirname(self.lldbExec), "clang")
+ if os.path.exists(path):
+ return path
return os.environ["CC"]
EMAIL PREFERENCES
http://reviews.llvm.org/settings/panel/emailpreferences/
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D7958.21586.patch
Type: text/x-patch
Size: 514 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20150310/8a8926a7/attachment.bin>
More information about the lldb-commits
mailing list