From f8d6542e873be7821636fd5ae313e8249c235438 Mon Sep 17 00:00:00 2001 From: Med Ismail Bennani Date: Tue, 25 Apr 2023 16:08:55 -0700 Subject: [PATCH] [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 --- .../interactive_scripted_process/TestInteractiveScriptedProcess.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lldb/test/API/functionalities/interactive_scripted_process/TestInteractiveScriptedProcess.py b/lldb/test/API/functionalities/interactive_scripted_process/TestInteractiveScriptedProcess.py index 7a0d2f2..807fcd7 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 @@ Test the functionality of interactive scripted processes import lldb import lldbsuite.test.lldbutil as lldbutil +from lldbsuite.test.decorators import * from lldbsuite.test.lldbtest import * import json, os -- 2.7.4