BT CtsVerifier: Temporaily disable failing Secure tests

This CL disables following tests:

Bluetooth LE Secure Server Test
- 02 Bluetooth LE Connection Priority Server Test
- 03 Bluetooth LE Encrypted Server Test

Bluetooth LE Secure Client Test
- 02 Bluetooth LE Connection Priority Client Test
- 03 Bluetooth LE Encrypted Client Test

Bug: 235763737
Test: CtsVerifier hides those tests
Change-Id: I330429e94b3e1c9924c185ca7f132adf767c6feb
diff --git a/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/BleSecureClientTestListActivity.java b/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/BleSecureClientTestListActivity.java
index feba59c..cde35be 100644
--- a/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/BleSecureClientTestListActivity.java
+++ b/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/BleSecureClientTestListActivity.java
@@ -40,6 +40,13 @@
 

         BluetoothAdapter adapter = BluetoothAdapter.getDefaultAdapter();

         List<String> disabledTest = new ArrayList<String>();

+

+        // Temporarily disable this test (b/235763737).

+        disabledTest.add(

+                "com.android.cts.verifier.bluetooth.BleSecureConnectionPriorityClientTestActivity");

+        disabledTest.add(

+                "com.android.cts.verifier.bluetooth.BleSecureEncryptedClientTestActivity");

+

         if (adapter == null || !adapter.isOffloadedFilteringSupported()) {

             disabledTest.add(

                     "com.android.cts.verifier.bluetooth.BleAdvertiserHardwareScanFilterActivity.");

diff --git a/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/BleSecureServerTestListActivity.java b/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/BleSecureServerTestListActivity.java
index 06d6dab..6fc3b87 100644
--- a/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/BleSecureServerTestListActivity.java
+++ b/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/BleSecureServerTestListActivity.java
@@ -37,6 +37,12 @@
 

         BluetoothAdapter adapter = BluetoothAdapter.getDefaultAdapter();

         List<String> disabledTest = new ArrayList<String>();

+        // Temporarily disable this test (b/235763737).

+        disabledTest.add(

+                "com.android.cts.verifier.bluetooth.BleSecureConnectionPriorityServerTestActivity");

+        disabledTest.add(

+                "com.android.cts.verifier.bluetooth.BleSecureEncryptedServerTestActivity");

+

         if (adapter == null || !adapter.isOffloadedFilteringSupported()) {

             disabledTest.add(

                     "com.android.cts.verifier.bluetooth.BleAdvertiserHardwareScanFilterActivity.");