diff --git a/extensions/browser/api/bluetooth/bluetooth_appshell_test.cc b/extensions/browser/api/bluetooth/bluetooth_appshell_test.cc index 6e1f3a5e58f85f..c2f2bfb740ddea 100644 --- a/extensions/browser/api/bluetooth/bluetooth_appshell_test.cc +++ b/extensions/browser/api/bluetooth/bluetooth_appshell_test.cc @@ -7,6 +7,12 @@ using BluetoothShellApiTest = extensions::ShellApiTest; -IN_PROC_BROWSER_TEST_F(BluetoothShellApiTest, ApiSanityCheck) { +// TODO(crbug.com/1165955): this test flakes on Mac ASAN +#if defined(OS_MAC) +#define MAYBE_ApiSanityCheck DISABLED_ApiSanityCheck +#else +#define MAYBE_ApiSanityCheck ApiSanityCheck +#endif +IN_PROC_BROWSER_TEST_F(BluetoothShellApiTest, MAYBE_ApiSanityCheck) { ASSERT_TRUE(RunAppTest("api_test/bluetooth")); }