File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
lldb/test/API/api/multiple-debuggers Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -15,9 +15,12 @@ class TestMultipleSimultaneousDebuggers(TestBase):
15
15
@skipIfNoSBHeaders
16
16
@skipIfWindows
17
17
def test_multiple_debuggers (self ):
18
- env = {self .dylibPath : self .getLLDBLibraryEnvVal (),
19
- # We need this in order to run under ASAN, in case only LLDB is ASANified.
20
- 'ASAN_OPTIONS' : os .getenv ('ASAN_OPTIONS' , None )}
18
+ env = {self .dylibPath : self .getLLDBLibraryEnvVal ()}
19
+
20
+ # We need this in order to run under ASAN, in case only LLDB is ASANified.
21
+ asan_options = os .getenv ('ASAN_OPTIONS' , None )
22
+ if (asan_options is not None ):
23
+ env ['ASAN_OPTIONS' ] = asan_options
21
24
22
25
self .driver_exe = self .getBuildArtifact ("multi-process-driver" )
23
26
self .buildDriver ('multi-process-driver.cpp' , self .driver_exe )
You can’t perform that action at this time.
0 commit comments