Experiment with a larger packet timeout.

This is a follow-up to r357829 (https://reviews.llvm.org/D60340) to
see whether increasing the packet timeout for non-asan builds could
also positively affect the stability of non-asan bots.

llvm-svn: 357954
This commit is contained in:
Adrian Prantl 2019-04-08 23:02:11 +00:00
parent 74ccef1f4f
commit e794752bdf
1 changed files with 2 additions and 2 deletions

View File

@ -111,10 +111,10 @@ void DumpProcessGDBRemotePacketHistory(void *p, const char *path) {
namespace { namespace {
static constexpr PropertyDefinition g_properties[] = { static constexpr PropertyDefinition g_properties[] = {
{"packet-timeout", OptionValue::eTypeUInt64, true, 1 {"packet-timeout", OptionValue::eTypeUInt64, true, 5
#if defined(__has_feature) #if defined(__has_feature)
#if __has_feature(address_sanitizer) #if __has_feature(address_sanitizer)
+ 4 * 2
#endif #endif
#endif #endif
, NULL, {}, , NULL, {},