From ac0f34f6cdc65770226b90ea6b931f9bdadce5ac Mon Sep 17 00:00:00 2001 From: William Escande Date: Thu, 11 Apr 2024 09:06:31 -0700 Subject: [PATCH] Bluetooth vts hal: Restore to 2s startup 1s should really be the max limit, but it requires time to investigate the failures and optimize this Bug: 327273567 Fix: 332815453 Test: atest VtsHalBluetoothTargetTest Change-Id: I43767b5241d967cb643401711fd7b2e015e99455 --- bluetooth/aidl/vts/VtsHalBluetoothTargetTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bluetooth/aidl/vts/VtsHalBluetoothTargetTest.cpp b/bluetooth/aidl/vts/VtsHalBluetoothTargetTest.cpp index 608fde1ca9..140b956043 100644 --- a/bluetooth/aidl/vts/VtsHalBluetoothTargetTest.cpp +++ b/bluetooth/aidl/vts/VtsHalBluetoothTargetTest.cpp @@ -75,7 +75,7 @@ static constexpr uint8_t kMinLeResolvingListForBt5 = 8; static constexpr size_t kNumHciCommandsBandwidth = 100; static constexpr size_t kNumScoPacketsBandwidth = 100; static constexpr size_t kNumAclPacketsBandwidth = 100; -static constexpr std::chrono::milliseconds kWaitForInitTimeout(1000); +static constexpr std::chrono::milliseconds kWaitForInitTimeout(2000); static constexpr std::chrono::milliseconds kWaitForHciEventTimeout(2000); static constexpr std::chrono::milliseconds kWaitForScoDataTimeout(1000); static constexpr std::chrono::milliseconds kWaitForAclDataTimeout(1000);