[Lldb-commits] [lldb] af4da4f - [lldb] Increase timeout in TestProcessIOHandlerInterrupt

Pavel Labath via lldb-commits lldb-commits at lists.llvm.org
Fri Mar 18 04:14:55 PDT 2022


Author: Pavel Labath
Date: 2022-03-18T12:14:10+01:00
New Revision: af4da4f995f8aaaa30aee6fcd598c3c07ecaff89

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

LOG: [lldb] Increase timeout in TestProcessIOHandlerInterrupt

The small value was not meant to be checked in.

Added: 
    

Modified: 
    lldb/test/API/iohandler/sigint/TestProcessIOHandlerInterrupt.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/iohandler/sigint/TestProcessIOHandlerInterrupt.py b/lldb/test/API/iohandler/sigint/TestProcessIOHandlerInterrupt.py
index f1bd76e348caf..707c84eeacdac 100644
--- a/lldb/test/API/iohandler/sigint/TestProcessIOHandlerInterrupt.py
+++ b/lldb/test/API/iohandler/sigint/TestProcessIOHandlerInterrupt.py
@@ -15,7 +15,7 @@ class TestCase(PExpectTest):
 
     def test(self):
         self.build(dictionary={"CXX_SOURCES":"cat.cpp"})
-        self.launch(executable=self.getBuildArtifact(), timeout=5)
+        self.launch(executable=self.getBuildArtifact())
 
         self.child.sendline("process launch")
         self.child.expect("Process .* launched")


        


More information about the lldb-commits mailing list