[Lldb-commits] [lldb] r219701 - Skip asan test on FreeBSD
Ed Maste
emaste at freebsd.org
Tue Oct 14 11:04:48 PDT 2014
Author: emaste
Date: Tue Oct 14 13:04:47 2014
New Revision: 219701
URL: http://llvm.org/viewvc/llvm-project?rev=219701&view=rev
Log:
Skip asan test on FreeBSD
The build fails due to missing asan runtime in the FreeBSD base system.
Instead of marking it expected fail, just skip until we have the runtime
available.
llvm.org/pr21136
Modified:
lldb/trunk/test/functionalities/asan/TestReportData.py
Modified: lldb/trunk/test/functionalities/asan/TestReportData.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/asan/TestReportData.py?rev=219701&r1=219700&r2=219701&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/asan/TestReportData.py (original)
+++ lldb/trunk/test/functionalities/asan/TestReportData.py Tue Oct 14 13:04:47 2014
@@ -25,6 +25,7 @@ class AsanTestReportDataCase(TestBase):
self.buildDsym (None, compiler)
self.asan_tests ()
+ @skipIfFreeBSD # llvm.org/pr21136 runtimes not yet available by default
@skipIfRemote
@dwarf_test
def test_with_dwarf (self):
More information about the lldb-commits
mailing list