Commit c2522477 by Corentin Wallez Committed by Commit Bot

TimerQuery: Suppress flaky test on OSX AMD

BUG=angleproject:1866 Change-Id: I41f1e842b7f64e541f98d466d2b0875412161274 Reviewed-on: https://chromium-review.googlesource.com/437285Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org> Commit-Queue: Corentin Wallez <cwallez@chromium.org>
parent 7bb425c6
......@@ -320,6 +320,14 @@ TEST_P(TimerQueriesTest, TimeElapsedMulticontextTest)
return;
}
if (IsAMD() && IsOSX())
{
// TODO(cwallez): Figure out why this test is flaky on OSX/AMD.
// http://anglebug.com/1866
std::cout << "Test skipped on Mac AMD." << std::endl;
return;
}
if (!extensionEnabled("GL_EXT_disjoint_timer_query"))
{
std::cout << "Test skipped because GL_EXT_disjoint_timer_query is not available."
......@@ -589,4 +597,4 @@ ANGLE_INSTANTIATE_TEST(TimerQueriesTest,
ES2_OPENGL(),
ES3_OPENGL());
ANGLE_INSTANTIATE_TEST(TimerQueriesTestES3, ES3_D3D11(), ES3_OPENGL());
\ No newline at end of file
ANGLE_INSTANTIATE_TEST(TimerQueriesTestES3, ES3_D3D11(), ES3_OPENGL());
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