diff options
author | Pavel Labath <labath@google.com> | 2016-05-16 11:41:36 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2016-05-16 11:41:36 +0000 |
commit | 204ef66540bace16a128b6ca2202e188e4f32b6a (patch) | |
tree | a98132ef9ffe53c3b1aa4db89c011b875d6a2ba4 /lldb/source/Plugins/Platform/Android/AdbClient.cpp | |
parent | 32558a1615a02c09b029beb09edb2bea80cde751 (diff) | |
download | bcm5719-llvm-204ef66540bace16a128b6ca2202e188e4f32b6a.tar.gz bcm5719-llvm-204ef66540bace16a128b6ca2202e188e4f32b6a.zip |
Bump up adb timeout more
still seeing very rare timeouts on the buildbot.
llvm-svn: 269648
Diffstat (limited to 'lldb/source/Plugins/Platform/Android/AdbClient.cpp')
-rw-r--r-- | lldb/source/Plugins/Platform/Android/AdbClient.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Platform/Android/AdbClient.cpp b/lldb/source/Plugins/Platform/Android/AdbClient.cpp index ce15bcdf477..2b2e478e291 100644 --- a/lldb/source/Plugins/Platform/Android/AdbClient.cpp +++ b/lldb/source/Plugins/Platform/Android/AdbClient.cpp @@ -34,7 +34,7 @@ using namespace lldb_private::platform_android; namespace { -const std::chrono::seconds kReadTimeout(6); +const std::chrono::seconds kReadTimeout(8); const char * kOKAY = "OKAY"; const char * kFAIL = "FAIL"; const char * kDATA = "DATA"; |