diff options
author | tturney <tturney@google.com> | 2017-01-11 13:57:20 -0800 |
---|---|---|
committer | tturney <tturney@google.com> | 2017-01-11 13:57:51 -0800 |
commit | 11b65e4a434c99307dd26afb8786eb8949adfce2 (patch) | |
tree | 3ada1859725a73fc89622f5a829a583ea6cba0bb | |
parent | 1cd79d03c819b5d570c176cc33762c44377e9f0d (diff) | |
download | platform_tools_test_connectivity-11b65e4a434c99307dd26afb8786eb8949adfce2.tar.gz platform_tools_test_connectivity-11b65e4a434c99307dd26afb8786eb8949adfce2.tar.bz2 platform_tools_test_connectivity-11b65e4a434c99307dd26afb8786eb8949adfce2.zip |
Add TestTracker UUIDs to BleBackgroundScanTest
Bug: 34220932
Test: Ran automation
Change-Id: I1d39ad8db5befdfc58835ef3c2f193bf13fcebd2
-rw-r--r-- | acts/tests/google/ble/scan/BleBackgroundScanTest.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/acts/tests/google/ble/scan/BleBackgroundScanTest.py b/acts/tests/google/ble/scan/BleBackgroundScanTest.py index 32762e2894..3636048952 100644 --- a/acts/tests/google/ble/scan/BleBackgroundScanTest.py +++ b/acts/tests/google/ble/scan/BleBackgroundScanTest.py @@ -19,6 +19,7 @@ This test script exercises background scan test scenarios. from queue import Empty +from acts.test_decorators import test_tracker_info from acts.test_utils.bt.BluetoothBaseTest import BluetoothBaseTest from acts.test_utils.bt.BleEnum import BluetoothAdapterState from acts.test_utils.bt.bt_test_utils import bluetooth_off @@ -79,6 +80,7 @@ class BleBackgroundScanTest(BluetoothBaseTest): return True @BluetoothBaseTest.bt_test_wrap + @test_tracker_info(uuid='4d13c3a8-1805-44ef-a92a-e385540767f1') def test_background_scan(self): """Test generic background scan. @@ -139,6 +141,7 @@ class BleBackgroundScanTest(BluetoothBaseTest): return True @BluetoothBaseTest.bt_test_wrap + @test_tracker_info(uuid='9c4577f8-5e06-4034-b977-285956734974') def test_background_scan_ble_disabled(self): """Test background LE scanning with LE disabled. @@ -192,6 +195,7 @@ class BleBackgroundScanTest(BluetoothBaseTest): return True @BluetoothBaseTest.bt_test_wrap + @test_tracker_info(uuid='0bdd1764-3dc6-4a82-b041-76e48ed0f424') def test_airplane_mode_disables_ble(self): """Try to start LE mode in Airplane Mode. |