| Index: third_party/WebKit/Source/modules/bluetooth/testing/clusterfuzz/parameter_fuzzer.py
|
| diff --git a/third_party/WebKit/Source/modules/bluetooth/testing/clusterfuzz/parameter_fuzzer.py b/third_party/WebKit/Source/modules/bluetooth/testing/clusterfuzz/parameter_fuzzer.py
|
| index f672744bcd813651320d8628fbb4b4e536548307..614fccc28bdc38da29bf121f8a2ac025e02a879e 100644
|
| --- a/third_party/WebKit/Source/modules/bluetooth/testing/clusterfuzz/parameter_fuzzer.py
|
| +++ b/third_party/WebKit/Source/modules/bluetooth/testing/clusterfuzz/parameter_fuzzer.py
|
| @@ -34,12 +34,44 @@ def FuzzParameters(test_file_data):
|
| constraints.GetConnectableBase,
|
| test_file_data)
|
|
|
| - test_file_data = FillInParameter('TRANSFORM_SERVICE_RETRIEVED_BASE',
|
| - constraints.GetServiceRetrievedBase,
|
| + test_file_data = FillInParameter('TRANSFORM_SERVICES_RETRIEVED_BASE',
|
| + constraints.GetServicesRetrievedBase,
|
| + test_file_data)
|
| +
|
| + test_file_data = FillInParameter('TRANSFORM_CHARACTERISTICS_RETRIEVED_BASE',
|
| + constraints.GetCharacteristicsRetrievedBase,
|
| + test_file_data)
|
| +
|
| + test_file_data = FillInParameter('TRANSFORM_CATCH',
|
| + constraints.GetCatch,
|
| test_file_data)
|
|
|
| test_file_data = FillInParameter('TRANSFORM_REQUEST_DEVICE_OPTIONS',
|
| constraints.GetRequestDeviceOptions,
|
| test_file_data)
|
|
|
| + test_file_data = FillInParameter('TRANSFORM_GET_PRIMARY_SERVICES',
|
| + constraints.GetGetPrimaryServicesCall,
|
| + test_file_data)
|
| +
|
| + test_file_data = FillInParameter('TRANSFORM_PICK_A_SERVICE',
|
| + constraints.GetPickAService,
|
| + test_file_data)
|
| +
|
| + test_file_data = FillInParameter('TRANSFORM_GET_CHARACTERISTICS',
|
| + constraints.GetGetCharacteristicsCall,
|
| + test_file_data)
|
| +
|
| + test_file_data = FillInParameter('TRANSFORM_PICK_A_CHARACTERISTIC',
|
| + constraints.GetPickACharacteristic,
|
| + test_file_data)
|
| +
|
| + test_file_data = FillInParameter('TRANSFORM_WRITE_VALUE',
|
| + constraints.GetWriteValue,
|
| + test_file_data)
|
| +
|
| + test_file_data = FillInParameter('TRANSFORM_RELOAD_ID',
|
| + constraints.GetReloadId,
|
| + test_file_data)
|
| +
|
| return test_file_data
|
|
|