Chromium Code Reviews| Index: third_party/WebKit/Source/modules/bluetooth/testing/clusterfuzz/wbt_fakes.py |
| diff --git a/third_party/WebKit/Source/modules/bluetooth/testing/clusterfuzz/wbt_fakes.py b/third_party/WebKit/Source/modules/bluetooth/testing/clusterfuzz/wbt_fakes.py |
| index ec8781001e334156a4c534c4cc2c4b7d51eeed1c..530c2d486cfdab67946ab695f794e529a5d8e3f2 100644 |
| --- a/third_party/WebKit/Source/modules/bluetooth/testing/clusterfuzz/wbt_fakes.py |
| +++ b/third_party/WebKit/Source/modules/bluetooth/testing/clusterfuzz/wbt_fakes.py |
| @@ -34,6 +34,7 @@ ADVERTISED_SERVICES = [ |
| 'heart_rate', |
| 'human_interface_device', |
| 'device_information', |
| + 'a_device_name_that_is_longer_than_29_bytes_but_shorter_than_240_bytes', |
|
jeffcarp
2017/01/09 18:45:20
I'm still trying to figure out how to create the c
scheib
2017/01/09 19:26:49
They are created in content/shell/browser/layout_t
|
| BLOCKLISTED_UUID, |
| CONNECTION_ERROR_UUIDS[0], |
| DISCONNECTION_UUID, |
| @@ -48,6 +49,7 @@ SERVICES = [ |
| 'generic_access', |
| 'heart_rate', |
| 'human_interface_device', |
| + 'a_device_name_that_is_longer_than_29_bytes_but_shorter_than_240_bytes', |
| BLOCKLISTED_UUID, |
| DISCONNECTION_UUID, |
| GATT_ERROR_UUID, |
| @@ -90,6 +92,7 @@ ALL_ADAPTERS = [ |
| 'FailingConnectionsAdapter', |
| 'FailingGATTOperationsAdapter', |
| 'DelayedServicesDiscoveryAdapter', |
| + 'DeviceNameLongerThan29BytesAdapter', |
| ] |
| # List of fake adapters that include devices. |
| @@ -135,6 +138,10 @@ ADAPTERS_WITH_DEVICES = [ |
| 'DelayedServicesDiscoveryAdapter', |
| ['generic_access', 'heart_rate'], |
| ), |
| + ( |
| + 'DeviceNameLongerThan29BytesAdapter', |
| + ['a_device_name_that_is_longer_than_29_bytes_but_shorter_than_240_bytes'], |
| + ), |
| ] |
| # List of fake adapters with services. |