diff options
author | Pavel Labath <labath@google.com> | 2017-05-16 11:58:18 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2017-05-16 11:58:18 +0000 |
commit | 26d49a640aef72b222885202ae6de7fc03b11226 (patch) | |
tree | 8a96c82ab8d069a455e0c632c13276f92bf4f86a /lldb/source/Plugins/Platform/Android/AdbClient.cpp | |
parent | 8680b6ee9c3eb49c761ea0c0de58d0585e1f47a8 (diff) | |
download | bcm5719-llvm-26d49a640aef72b222885202ae6de7fc03b11226.tar.gz bcm5719-llvm-26d49a640aef72b222885202ae6de7fc03b11226.zip |
Skip TestWatchedVarHitWhenInScope on android arm because it triggers a kernel bug
llvm-svn: 303160
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 b64afc81057..d3bcee6f487 100644 --- a/lldb/source/Plugins/Platform/Android/AdbClient.cpp +++ b/lldb/source/Plugins/Platform/Android/AdbClient.cpp @@ -46,7 +46,7 @@ using namespace std::chrono; namespace { -const seconds kReadTimeout(8); +const seconds kReadTimeout(12); const char *kOKAY = "OKAY"; const char *kFAIL = "FAIL"; const char *kDATA = "DATA"; |