Skip to content

Commit

Permalink
[lldb] Stop opening Console.app and TextEdit.app when running the tes…
Browse files Browse the repository at this point in the history
…tsuite on macOS
  • Loading branch information
bulbazord committed Mar 7, 2023
1 parent 28dc3aa commit 470fd9c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lldb/test/API/commands/session/save/TestSessionSave.py
Expand Up @@ -30,7 +30,8 @@ def test_session_save(self):
settings = [
'settings set interpreter.echo-commands true',
'settings set interpreter.echo-comment-commands true',
'settings set interpreter.stop-command-source-on-error false'
'settings set interpreter.stop-command-source-on-error false',
'settings set interpreter.open-transcript-in-editor false',
]

for setting in settings:
Expand Down Expand Up @@ -102,6 +103,7 @@ def test_session_save_on_quit(self):
'settings set interpreter.stop-command-source-on-error false',
'settings set interpreter.save-session-on-quit true',
'settings set interpreter.save-session-directory ' + td.name,
'settings set interpreter.open-transcript-in-editor false',
]

for setting in settings:
Expand Down

0 comments on commit 470fd9c

Please sign in to comment.