[Lldb-commits] [lldb] 470fd9c - [lldb] Stop opening Console.app and TextEdit.app when running the testsuite on macOS

Alex Langford via lldb-commits lldb-commits at lists.llvm.org
Mon Mar 6 16:48:03 PST 2023


Author: Alex Langford
Date: 2023-03-06T16:47:56-08:00
New Revision: 470fd9c50a20a79e75b116ab938b9f87f38cba5c

URL: https://github.com/llvm/llvm-project/commit/470fd9c50a20a79e75b116ab938b9f87f38cba5c
DIFF: https://github.com/llvm/llvm-project/commit/470fd9c50a20a79e75b116ab938b9f87f38cba5c.diff

LOG: [lldb] Stop opening Console.app and TextEdit.app when running the testsuite on macOS

Added: 
    

Modified: 
    lldb/test/API/commands/session/save/TestSessionSave.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/commands/session/save/TestSessionSave.py b/lldb/test/API/commands/session/save/TestSessionSave.py
index 5474cb354dae0..e1b60af05dd26 100644
--- a/lldb/test/API/commands/session/save/TestSessionSave.py
+++ b/lldb/test/API/commands/session/save/TestSessionSave.py
@@ -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:
@@ -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:


        


More information about the lldb-commits mailing list