Skip 2 flaky Perf tests on Win Intel Vulkan

pubg_mobile_launch flaky timeout
monster_hunter_stories flaky context lost

Bug: angleproject:7929, angleproject:7557
Change-Id: I45d7b22bd3186419a584314c6c1f52ed0427ec8a
Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/4674342
Auto-Submit: Yuly Novikov <ynovikov@chromium.org>
Commit-Queue: Roman Lavrov <romanl@google.com>
Commit-Queue: Yuly Novikov <ynovikov@chromium.org>
Reviewed-by: Roman Lavrov <romanl@google.com>
This commit is contained in:
Yuly Novikov
2023-07-10 13:56:13 +00:00
committed by Angle LUCI CQ
parent b2b1363ae6
commit 1019496633

View File

@@ -1543,9 +1543,9 @@ TracePerfTest::TracePerfTest(std::unique_ptr<const TracePerfParams> params)
if (traceNameIs("pubg_mobile_launch"))
{
if (isIntelWinNative)
if (isIntelWinNative || isIntelWinANGLE)
{
skipTest("http://anglebug.com/7929 Too slow on Win Intel native");
skipTest("http://anglebug.com/7929 Too slow on Win Intel native and Vulkan");
}
}
@@ -1636,6 +1636,14 @@ TracePerfTest::TracePerfTest(std::unique_ptr<const TracePerfParams> params)
}
}
if (traceNameIs("monster_hunter_stories"))
{
if (isIntelWinANGLE)
{
skipTest("http://anglebug.com/7557 Flaky context lost on Win Intel Vulkan");
}
}
// glDebugMessageControlKHR and glDebugMessageCallbackKHR crash on ARM GLES1.
if (IsARM() && mParams->traceInfo.contextClientMajorVersion == 1)
{