[LLDB] Temporarily incrase DEFAULT_TIMEOUT on gdbremote_testcase.py
authorMuhammad Omair Javaid <omair.javaid@linaro.org>
Wed, 9 Dec 2020 13:39:40 +0000 (18:39 +0500)
committerMuhammad Omair Javaid <omair.javaid@linaro.org>
Wed, 9 Dec 2020 13:44:21 +0000 (18:44 +0500)
TestLldbGdbServer.py testcases are timing out on LLDB/AArch64 Linux
buildbot since recent changes. I am temporarily increasing
DEFAULT_TIMEOUT to 20 seconds to see impact.

lldb/packages/Python/lldbsuite/test/tools/lldb-server/gdbremote_testcase.py

index d7bfb7f..2908ca2 100644 (file)
@@ -32,7 +32,7 @@ class GdbRemoteTestCaseBase(TestBase):
     NO_DEBUG_INFO_TESTCASE = True
 
     # Default time out in seconds. The timeout is increased tenfold under Asan.
-    DEFAULT_TIMEOUT =  10 * (10 if ('ASAN_OPTIONS' in os.environ) else 1)
+    DEFAULT_TIMEOUT =  20 * (10 if ('ASAN_OPTIONS' in os.environ) else 1)
     # Default sleep time in seconds. The sleep time is doubled under Asan.
     DEFAULT_SLEEP   =  5  * (2  if ('ASAN_OPTIONS' in os.environ) else 1)