diff options
-rw-r--r-- | chrome/browser/extensions/api/bluetooth/bluetooth_apitest_chromeos.cc | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/chrome/browser/extensions/api/bluetooth/bluetooth_apitest_chromeos.cc b/chrome/browser/extensions/api/bluetooth/bluetooth_apitest_chromeos.cc index 422fff7..a8e016c 100644 --- a/chrome/browser/extensions/api/bluetooth/bluetooth_apitest_chromeos.cc +++ b/chrome/browser/extensions/api/bluetooth/bluetooth_apitest_chromeos.cc @@ -234,7 +234,13 @@ IN_PROC_BROWSER_TEST_F(BluetoothApiTest, GetLocalOutOfBandPairingData) { EXPECT_FALSE(error.empty()); } -IN_PROC_BROWSER_TEST_F(BluetoothApiTest, SetOutOfBandPairingData) { +// Fails under ASan, see http://crbug.com/133199. +#if defined(ADDRESS_SANITIZER) +#define MAYBE_SetOutOfBandPairingData DISABLED_SetOutOfBandPairingData +#else +#define MAYBE_SetOutOfBandPairingData SetOutOfBandPairingData +#endif +IN_PROC_BROWSER_TEST_F(BluetoothApiTest, MAYBE_SetOutOfBandPairingData) { std::string device_address("11:12:13:14:15:16"); testing::NiceMock<chromeos::MockBluetoothDevice> device( mock_adapter_, "d1", device_address, |