summaryrefslogtreecommitdiff
path: root/packages/Python/lldbsuite/test/lang/go/expressions/TestExpressions.py
diff options
context:
space:
mode:
Diffstat (limited to 'packages/Python/lldbsuite/test/lang/go/expressions/TestExpressions.py')
-rw-r--r--packages/Python/lldbsuite/test/lang/go/expressions/TestExpressions.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/Python/lldbsuite/test/lang/go/expressions/TestExpressions.py b/packages/Python/lldbsuite/test/lang/go/expressions/TestExpressions.py
index 306b00840dfd..963e0676100d 100644
--- a/packages/Python/lldbsuite/test/lang/go/expressions/TestExpressions.py
+++ b/packages/Python/lldbsuite/test/lang/go/expressions/TestExpressions.py
@@ -15,6 +15,7 @@ class TestGoUserExpression(TestBase):
@add_test_categories(['pyapi'])
@skipIfRemote # Not remote test suit ready
+ @skipIfFreeBSD # Test hanging on FreeBSD - llvm.org/pr37194
@skipUnlessGoInstalled
def test_with_dsym_and_python_api(self):
"""Test GoASTUserExpress."""
@@ -40,7 +41,7 @@ class TestGoUserExpression(TestBase):
self.assertEqual(size, t.size)
def launchProcess(self):
- exe = os.path.join(os.getcwd(), "a.out")
+ exe = self.getBuildArtifact("a.out")
target = self.dbg.CreateTarget(exe)
self.assertTrue(target, VALID_TARGET)