Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4a5a3124 authored by Jayden Kim's avatar Jayden Kim Committed by Automerger Merge Worker
Browse files

Merge changes from topic "bt_socket_offload_hal" into main am: d34cb3bb

parents 26f3392e d34cb3bb
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -112,6 +112,14 @@ TEST_P(BluetoothSocketTest, GetSocketCapabilities) {
    ASSERT_TRUE(socket_capabilities.leCocCapabilities.mtu >= 23 &&
                socket_capabilities.leCocCapabilities.mtu <= 65535);
  }
  ASSERT_TRUE(socket_capabilities.rfcommCapabilities.numberOfSupportedSockets >=
              0);
  if (socket_capabilities.rfcommCapabilities.numberOfSupportedSockets) {
    // When RFCOMM is supported, the maximum frame size must be configured
    // within the valid range defined in the RFCOMM specification.
    ASSERT_TRUE(socket_capabilities.rfcommCapabilities.maxFrameSize >= 23 &&
                socket_capabilities.rfcommCapabilities.maxFrameSize <= 32767);
  }
}

TEST_P(BluetoothSocketTest, Opened) {