[Lldb-commits] [lldb] r253697 - Use the system clang, since this support should now be in; does not un-xfail the test yet

Enrico Granata via lldb-commits lldb-commits at lists.llvm.org
Fri Nov 20 11:25:39 PST 2015


Author: enrico
Date: Fri Nov 20 13:25:39 2015
New Revision: 253697

URL: http://llvm.org/viewvc/llvm-project?rev=253697&view=rev
Log:
Use the system clang, since this support should now be in; does not un-xfail the test yet

Modified:
    lldb/trunk/packages/Python/lldbsuite/test/functionalities/asan/TestMemoryHistory.py
    lldb/trunk/packages/Python/lldbsuite/test/functionalities/asan/TestReportData.py

Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/asan/TestMemoryHistory.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/asan/TestMemoryHistory.py?rev=253697&r1=253696&r2=253697&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/asan/TestMemoryHistory.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/asan/TestMemoryHistory.py Fri Nov 20 13:25:39 2015
@@ -15,18 +15,13 @@ class AsanTestCase(TestBase):
 
     mydir = TestBase.compute_mydir(__file__)
 
-    # The default compiler ("clang") may not support Address Sanitizer or it
-    # may not have the debugging API which was recently added, so we're calling
-    # self.useBuiltClang() to use clang from the llvm-build directory instead
-
     @expectedFailureLinux # non-core functionality, need to reenable and fix later (DES 2014.11.07)
     @skipIfFreeBSD # llvm.org/pr21136 runtimes not yet available by default
     @skipIfRemote
     @skipUnlessCompilerRt
     @expectedFailureDarwin
     def test (self):
-        compiler = self.findBuiltClang ()
-        self.build (None, compiler)
+        self.build ()
         self.asan_tests ()
 
     def setUp(self):

Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/asan/TestReportData.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/asan/TestReportData.py?rev=253697&r1=253696&r2=253697&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/asan/TestReportData.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/asan/TestReportData.py Fri Nov 20 13:25:39 2015
@@ -16,18 +16,13 @@ class AsanTestReportDataCase(TestBase):
 
     mydir = TestBase.compute_mydir(__file__)
 
-    # The default compiler ("clang") may not support Address Sanitizer or it
-    # may not have the debugging API which was recently added, so we're calling
-    # self.useBuiltClang() to use clang from the llvm-build directory instead
-
     @expectedFailureLinux # non-core functionality, need to reenable and fix later (DES 2014.11.07)
     @skipIfFreeBSD # llvm.org/pr21136 runtimes not yet available by default
     @skipIfRemote
     @skipUnlessCompilerRt
     @expectedFailureDarwin
     def test(self):
-        compiler = self.findBuiltClang ()
-        self.build (None, compiler)
+        self.build ()
         self.asan_tests ()
 
     def setUp(self):




More information about the lldb-commits mailing list