[Lldb-commits] [lldb] f8d6542 - [lldb/test] Fix test failure from missing decorator

Med Ismail Bennani via lldb-commits lldb-commits at lists.llvm.org
Tue Apr 25 16:10:53 PDT 2023


Author: Med Ismail Bennani
Date: 2023-04-25T16:08:55-07:00
New Revision: f8d6542e873be7821636fd5ae313e8249c235438

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

LOG: [lldb/test] Fix test failure from missing decorator

This should fix a test failure in TestInteractiveScriptedProcess.py
caused by a missing decorator added in d0d902d.

Signed-off-by: Med Ismail Bennani <medismail.bennani at gmail.com>

Added: 
    

Modified: 
    lldb/test/API/functionalities/interactive_scripted_process/TestInteractiveScriptedProcess.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/functionalities/interactive_scripted_process/TestInteractiveScriptedProcess.py b/lldb/test/API/functionalities/interactive_scripted_process/TestInteractiveScriptedProcess.py
index 7a0d2f2d817e..807fcd76fd54 100644
--- a/lldb/test/API/functionalities/interactive_scripted_process/TestInteractiveScriptedProcess.py
+++ b/lldb/test/API/functionalities/interactive_scripted_process/TestInteractiveScriptedProcess.py
@@ -4,6 +4,7 @@
 
 import lldb
 import lldbsuite.test.lldbutil as lldbutil
+from lldbsuite.test.decorators import *
 from lldbsuite.test.lldbtest import *
 import json, os
 


        


More information about the lldb-commits mailing list