File tree 1 file changed +2
-2
lines changed
lldb/test/API/macosx/function-starts
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -22,15 +22,15 @@ class FunctionStartsTestCase(TestBase):
22
22
@skipIfReproducer # File synchronization is not supported during replay.
23
23
def test_function_starts_binary (self ):
24
24
"""Test that we make synthetic symbols when we have the binary."""
25
- self .build ()
25
+ self .build (dictionary = { 'CODESIGN' : '' }) # Binary is getting stripped later.
26
26
self .do_function_starts (False )
27
27
28
28
@skipIfRemote
29
29
@skipUnlessDarwin
30
30
@skipIfReproducer # File synchronization is not supported during replay.
31
31
def test_function_starts_no_binary (self ):
32
32
"""Test that we make synthetic symbols when we don't have the binary"""
33
- self .build ()
33
+ self .build (dictionary = { 'CODESIGN' : '' }) # Binary is getting stripped later.
34
34
self .do_function_starts (True )
35
35
36
36
def do_function_starts (self , in_memory ):
You can’t perform that action at this time.
0 commit comments