[Lldb-commits] [lldb] r219328 - Skip asan test on FreeBSD
Ed Maste
emaste at freebsd.org
Wed Oct 8 11:15:48 PDT 2014
Author: emaste
Date: Wed Oct 8 13:15:48 2014
New Revision: 219328
URL: http://llvm.org/viewvc/llvm-project?rev=219328&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/TestAsan.py
Modified: lldb/trunk/test/functionalities/asan/TestAsan.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/asan/TestAsan.py?rev=219328&r1=219327&r2=219328&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/asan/TestAsan.py (original)
+++ lldb/trunk/test/functionalities/asan/TestAsan.py Wed Oct 8 13:15:48 2014
@@ -24,7 +24,7 @@ class AsanTestCase(TestBase):
self.buildDsym (None, compiler)
self.asan_tests ()
- @expectedFailureFreeBSD("llvm.org/pr21136") # runtimes not yet available by default
+ @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