[Lldb-commits] [lldb] r248155 - For now skip go tests that trigger assertion failures on FreeBSD
Ed Maste via lldb-commits
lldb-commits at lists.llvm.org
Mon Sep 21 06:32:21 PDT 2015
Author: emaste
Date: Mon Sep 21 08:32:21 2015
New Revision: 248155
URL: http://llvm.org/viewvc/llvm-project?rev=248155&view=rev
Log:
For now skip go tests that trigger assertion failures on FreeBSD
llvm.org/pr24895
Modified:
lldb/trunk/test/lang/go/goroutines/TestGoroutines.py
lldb/trunk/test/lang/go/types/TestGoASTContext.py
Modified: lldb/trunk/test/lang/go/goroutines/TestGoroutines.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/go/goroutines/TestGoroutines.py?rev=248155&r1=248154&r2=248155&view=diff
==============================================================================
--- lldb/trunk/test/lang/go/goroutines/TestGoroutines.py (original)
+++ lldb/trunk/test/lang/go/goroutines/TestGoroutines.py Mon Sep 21 08:32:21 2015
@@ -11,6 +11,7 @@ class TestGoASTContext(TestBase):
mydir = TestBase.compute_mydir(__file__)
@python_api_test
+ @skipIfFreeBSD # llvm.org/pr24895 triggers assertion failure
@skipIfRemote # Not remote test suite ready
@skipUnlessGoInstalled
def test_goroutine_plugin(self):
Modified: lldb/trunk/test/lang/go/types/TestGoASTContext.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/go/types/TestGoASTContext.py?rev=248155&r1=248154&r2=248155&view=diff
==============================================================================
--- lldb/trunk/test/lang/go/types/TestGoASTContext.py (original)
+++ lldb/trunk/test/lang/go/types/TestGoASTContext.py Mon Sep 21 08:32:21 2015
@@ -11,6 +11,7 @@ class TestGoASTContext(TestBase):
mydir = TestBase.compute_mydir(__file__)
@python_api_test
+ @skipIfFreeBSD # llvm.org/pr24895 triggers assertion failure
@skipIfRemote # Not remote test suit ready
@skipUnlessGoInstalled
def test_with_dsym_and_python_api(self):
More information about the lldb-commits
mailing list