Disable broken TestSetCpuFlags test on Windows

This is for
https://ci.chromium.org/ui/p/libyuv/builders/try/win_rel/4043/overview

Change-Id: If07dbcf180c9be5ef0b9b7c26db4a19e71e697e3
Reviewed-on: https://chromium-review.googlesource.com/c/libyuv/libyuv/+/6848407
Reviewed-by: richard winterton <rrwinterton@gmail.com>
Reviewed-by: Frank Barchard <fbarchard@chromium.org>
This commit is contained in:
Takuto Ikuta 2025-08-14 13:43:46 +09:00 committed by Frank Barchard
parent ec10b61c58
commit c4c42f3181

View File

@ -427,7 +427,13 @@ TEST_F(LibYUVBaseTest, DISABLED_TestLinuxRVV) {
#endif #endif
} }
TEST_F(LibYUVBaseTest, TestSetCpuFlags) { #ifdef _WIN32
// This doesn't pass on Windows CQ.
#define MAYBE_TestSetCpuFlags DISABLED_TestSetCpuFlags
#else
#define MAYBE_TestSetCpuFlags TestSetCpuFlags
#endif
TEST_F(LibYUVBaseTest, MAYBE_TestSetCpuFlags) {
// Reset any masked flags that may have been set so auto init is enabled. // Reset any masked flags that may have been set so auto init is enabled.
MaskCpuFlags(0); MaskCpuFlags(0);