[autotest] Remove AVRCP test from Bluetooth qualification test

Based on below CL, AVRCP is no longer supported by Chromebook, thus
there is no need to test AVRCP feature from Bluetooth qualifciation test
suite and actually, it causes the test fails.

https://chromium-review.googlesource.com/#/c/265582/

BUG=chrome-os-partner:43862
TEST=Ran BT qualification test

Change-Id: I8f65757e6bdc76c224963592a33841de1dbdfb95
Signed-off-by: Pavan Savoy <pavanx.savoy@intel.com>
Signed-off-by: Tedd Ho-Jeong An <tedd.an@intel.com>
Reviewed-on: https://chromium-review.googlesource.com/292158
Reviewed-by: Arman Uguray <armansito@chromium.org>
diff --git a/server/site_tests/bluetooth_SDP_ServiceAttributeRequest/bluetooth_SDP_ServiceAttributeRequest.py b/server/site_tests/bluetooth_SDP_ServiceAttributeRequest/bluetooth_SDP_ServiceAttributeRequest.py
index a25b638..69895d8 100644
--- a/server/site_tests/bluetooth_SDP_ServiceAttributeRequest/bluetooth_SDP_ServiceAttributeRequest.py
+++ b/server/site_tests/bluetooth_SDP_ServiceAttributeRequest/bluetooth_SDP_ServiceAttributeRequest.py
@@ -278,10 +278,12 @@
 
         @raise error.TestFail: If the DUT failed the test.
         """
+
+        """AVRCP is not supported by Chromebook and no need to run this test
         self.assert_nonempty_list(
             self.get_attribute(self.AVRCP_TG_CLASS_ID,
                 self.ADDITIONAL_PROTOCOLLIST_ATTR_ID))
-
+        """
 
     def test_non_existing_attribute(self):
         """Implementation of test TP/SERVER/SA/BV-20-C from SDP Specification.
diff --git a/server/site_tests/bluetooth_SDP_ServiceSearchAttributeRequest/bluetooth_SDP_ServiceSearchAttributeRequest.py b/server/site_tests/bluetooth_SDP_ServiceSearchAttributeRequest/bluetooth_SDP_ServiceSearchAttributeRequest.py
index 8d7f952..d98c12c 100644
--- a/server/site_tests/bluetooth_SDP_ServiceSearchAttributeRequest/bluetooth_SDP_ServiceSearchAttributeRequest.py
+++ b/server/site_tests/bluetooth_SDP_ServiceSearchAttributeRequest/bluetooth_SDP_ServiceSearchAttributeRequest.py
@@ -310,10 +310,13 @@
         @return True if test passes, False if test fails
 
         """
+
+        """AVRCP is not supported by Chromebook and no need to run this test
         value = self.test_attribute(self.AVRCP_TG_CLASS_ID,
                                     self.ADDITIONAL_PROTOCOLLIST_ATTR_ID)
         return isinstance(value, list) and value != []
-
+        """
+        return True
 
     def test_fake_attributes(self):
         """Test values of attributes of the fake service record.