diff --git a/lldb/test/API/macosx/function-starts/TestFunctionStarts.py b/lldb/test/API/macosx/function-starts/TestFunctionStarts.py index 5dc43a5a10935..e8f540b5a5fc7 100644 --- a/lldb/test/API/macosx/function-starts/TestFunctionStarts.py +++ b/lldb/test/API/macosx/function-starts/TestFunctionStarts.py @@ -22,7 +22,7 @@ class FunctionStartsTestCase(TestBase): @skipIfReproducer # File synchronization is not supported during replay. def test_function_starts_binary(self): """Test that we make synthetic symbols when we have the binary.""" - self.build() + self.build(dictionary={'CODESIGN': ''}) # Binary is getting stripped later. self.do_function_starts(False) @skipIfRemote @@ -30,7 +30,7 @@ def test_function_starts_binary(self): @skipIfReproducer # File synchronization is not supported during replay. def test_function_starts_no_binary(self): """Test that we make synthetic symbols when we don't have the binary""" - self.build() + self.build(dictionary={'CODESIGN': ''}) # Binary is getting stripped later. self.do_function_starts(True) def do_function_starts(self, in_memory):