Revert "Increase gdbremote timeout."
authorAdrian Prantl <aprantl@apple.com>
Thu, 18 Nov 2021 23:07:08 +0000 (15:07 -0800)
committerAdrian Prantl <aprantl@apple.com>
Thu, 18 Nov 2021 23:07:30 +0000 (15:07 -0800)
This reverts commit 6424dc21bf6b73645ef98a35417e0591b2a95939.

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

index 268ff70..97a7543 100644 (file)
@@ -62,8 +62,8 @@ class GdbRemoteTestCaseFactory(type):
 @add_metaclass(GdbRemoteTestCaseFactory)
 class GdbRemoteTestCaseBase(Base):
 
-    # Default time out in seconds. The timeout is increased fivefold under Asan.
-    DEFAULT_TIMEOUT =  60 * (5 if ('ASAN_OPTIONS' in os.environ) else 1)
+    # Default time out in seconds. The timeout is increased tenfold under Asan.
+    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)