[lldb] Add missing import for LLDB test decorators to TestStopHookScripted
authorRaphael Isemann <teemperor@gmail.com>
Thu, 1 Oct 2020 12:32:02 +0000 (14:32 +0200)
committerRaphael Isemann <teemperor@gmail.com>
Thu, 1 Oct 2020 12:33:13 +0000 (14:33 +0200)
This test wasn't using decorators before and was missing the import, so my
previous commit broke the test.

lldb/test/API/commands/target/stop-hooks/TestStopHookScripted.py

index a17f713..014890e 100644 (file)
@@ -7,7 +7,7 @@ Test stop hook functionality
 import lldb
 import lldbsuite.test.lldbutil as lldbutil
 from lldbsuite.test.lldbtest import *
-
+from lldbsuite.test.decorators import *
 
 class TestStopHooks(TestBase):