Commit 9a538e52 authored by glider@chromium.org's avatar glider@chromium.org

Disable BluetoothSocketApiTest.Listen in libc++ builds until http://crbug.com/392205 is fixed.

BUG=392205
R=keybuk@chromium.org

Review URL: https://codereview.chromium.org/403343003

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@284485 0039d316-1c4b-4281-b951-d872f2087c98
parent 7d9be261
...@@ -133,7 +133,13 @@ IN_PROC_BROWSER_TEST_F(BluetoothSocketApiTest, Connect) { ...@@ -133,7 +133,13 @@ IN_PROC_BROWSER_TEST_F(BluetoothSocketApiTest, Connect) {
EXPECT_TRUE(catcher.GetNextResult()) << catcher.message(); EXPECT_TRUE(catcher.GetNextResult()) << catcher.message();
} }
IN_PROC_BROWSER_TEST_F(BluetoothSocketApiTest, Listen) { #if defined(_LIBCPP_VERSION)
// This test fails in libc++ builds, see http://crbug.com/392205.
#define MAYBE_Listen DISABLED_Listen
#else
#define MAYBE_Listen Listen
#endif
IN_PROC_BROWSER_TEST_F(BluetoothSocketApiTest, MAYBE_Listen) {
ResultCatcher catcher; ResultCatcher catcher;
catcher.RestrictToProfile(browser()->profile()); catcher.RestrictToProfile(browser()->profile());
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment