Commit c3f0352d by Shahbaz Youssefi Committed by Commit Bot

Re-enable atomic counter tests on !windows

There is a bug that prevents us from running these tests on the windows bots. This change enables them on other platforms so we don't lose coverage. Bug: angleproject:3738 Change-Id: I9b546c3223499af88b347f8a01be8edb245c19a7 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/1950654 Commit-Queue: Shahbaz Youssefi <syoussefi@chromium.org> Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org>
parent 61c6aecc
...@@ -439,8 +439,10 @@ void main() ...@@ -439,8 +439,10 @@ void main()
// on Vulkan makes every shard our bots currently make do have at least some OpenGL test run before // on Vulkan makes every shard our bots currently make do have at least some OpenGL test run before
// any Vulkan test. When these tests can be enabled on Vulkan, can replace the current macros with // any Vulkan test. When these tests can be enabled on Vulkan, can replace the current macros with
// the updated macros below that include Vulkan: // the updated macros below that include Vulkan:
// ANGLE_INSTANTIATE_TEST_ES3_AND_ES31(AtomicCounterBufferTest); #if !defined(ANGLE_PLATFORM_WINDOWS)
// ANGLE_INSTANTIATE_TEST_ES31(AtomicCounterBufferTest31); ANGLE_INSTANTIATE_TEST_ES3_AND_ES31(AtomicCounterBufferTest);
ANGLE_INSTANTIATE_TEST_ES31(AtomicCounterBufferTest31);
#else
ANGLE_INSTANTIATE_TEST(AtomicCounterBufferTest, ANGLE_INSTANTIATE_TEST(AtomicCounterBufferTest,
ES3_OPENGL(), ES3_OPENGL(),
ES3_OPENGLES(), ES3_OPENGLES(),
...@@ -448,5 +450,6 @@ ANGLE_INSTANTIATE_TEST(AtomicCounterBufferTest, ...@@ -448,5 +450,6 @@ ANGLE_INSTANTIATE_TEST(AtomicCounterBufferTest,
ES31_OPENGLES(), ES31_OPENGLES(),
ES31_D3D11()); ES31_D3D11());
ANGLE_INSTANTIATE_TEST(AtomicCounterBufferTest31, ES31_OPENGL(), ES31_OPENGLES(), ES31_D3D11()); ANGLE_INSTANTIATE_TEST(AtomicCounterBufferTest31, ES31_OPENGL(), ES31_OPENGLES(), ES31_D3D11());
#endif
} // namespace } // namespace
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