Skip to content

Commit

Permalink
Disable BluetoothApiTest.SetOutOfBandPairingData under ASan.
Browse files Browse the repository at this point in the history
BUG=133199
TBR=bryeung
Review URL: https://chromiumcodereview.appspot.com/10544200

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@142630 0039d316-1c4b-4281-b951-d872f2087c98
  • Loading branch information
glider@chromium.org committed Jun 17, 2012
1 parent 17ea96b commit 0e62ba1
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 0e62ba1

Please sign in to comment.