From 1019496633e410d4eceb96de5fbabe4dfa4cdd54 Mon Sep 17 00:00:00 2001 From: Yuly Novikov Date: Mon, 10 Jul 2023 13:56:13 +0000 Subject: [PATCH] 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 Commit-Queue: Roman Lavrov Commit-Queue: Yuly Novikov Reviewed-by: Roman Lavrov --- src/tests/perf_tests/TracePerfTest.cpp | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/src/tests/perf_tests/TracePerfTest.cpp b/src/tests/perf_tests/TracePerfTest.cpp index fc3231a9b..5adcf046a 100644 --- a/src/tests/perf_tests/TracePerfTest.cpp +++ b/src/tests/perf_tests/TracePerfTest.cpp @@ -1543,9 +1543,9 @@ TracePerfTest::TracePerfTest(std::unique_ptr 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 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) {