ci: uprev CTS to 1.3.5.0

Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Acked-by: Mike Blumenkrantz <michael.blumenkrantz@gmail.com>
Acked-by: Eric Engestrom <eric@igalia.com>
Reviewed-by: Emma Anholt <emma@anholt.net>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21390>
This commit is contained in:
Samuel Pitoiset
2023-02-17 15:57:35 +01:00
committed by Marge Bot
parent 3b9937c85e
commit f775873f81
41 changed files with 1596 additions and 319 deletions

View File

@@ -0,0 +1,174 @@
From bf8ada0d15f94824ee1643d4e17a66dffdbaf2e5 Mon Sep 17 00:00:00 2001
From: Tomeu Vizoso <tomeu.vizoso@collabora.com>
Date: Fri, 26 Aug 2022 18:24:27 +0200
Subject: [PATCH 1/2] Allow running on Android from the command line
For testing the Android EGL platform without having to go via the
Android activity manager, build deqp-egl.
Tests that render to native windows are unsupported, as command line
programs cannot create windows on Android.
$ cmake -S . -B build/ -DDEQP_TARGET=android -DDEQP_TARGET_TOOLCHAIN=ndk-modern -DCMAKE_C_FLAGS=-Werror -DCMAKE_CXX_FLAGS=-Werror -DANDROID_NDK_PATH=./android-ndk-r21d -DANDROID_ABI=x86_64 -DDE_ANDROID_API=28 -DGLCTS_GTF_TARGET=gles32 -G Ninja
$ ninja -C build modules/egl/deqp-egl
Signed-off-by: Tomeu Vizoso <tomeu.vizoso@collabora.com>
Signed-off-by: David Heidelberg <david.heidelberg@collabora.com>
---
CMakeLists.txt | 36 ++-----------------
.../android/tcuAndroidNativeActivity.cpp | 36 ++++++++++---------
.../platform/android/tcuAndroidPlatform.cpp | 12 ++++++-
3 files changed, 33 insertions(+), 51 deletions(-)
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 1ff2bb9..8c76abb 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -249,7 +249,7 @@ include_directories(
external/vulkancts/framework/vulkan/generated/vulkan
)
-if (DE_OS_IS_ANDROID OR DE_OS_IS_IOS)
+if (DE_OS_IS_IOS)
# On Android deqp modules are compiled as libraries and linked into final .so
set(DEQP_MODULE_LIBRARIES )
set(DEQP_MODULE_ENTRY_POINTS )
@@ -293,7 +293,7 @@ macro (add_deqp_module MODULE_NAME SRCS LIBS EXECLIBS ENTRY)
set(DEQP_MODULE_LIBRARIES ${DEQP_MODULE_LIBRARIES} PARENT_SCOPE)
set(DEQP_MODULE_ENTRY_POINTS ${DEQP_MODULE_ENTRY_POINTS} PARENT_SCOPE)
- if (NOT DE_OS_IS_ANDROID AND NOT DE_OS_IS_IOS)
+ if (NOT DE_OS_IS_IOS)
# Executable target
add_executable(${MODULE_NAME} ${PROJECT_SOURCE_DIR}/framework/platform/tcuMain.cpp ${ENTRY})
target_link_libraries(${MODULE_NAME} PUBLIC "${EXECLIBS}" "${MODULE_NAME}${MODULE_LIB_TARGET_POSTFIX}")
@@ -367,37 +367,7 @@ add_subdirectory(external/vulkancts/vkscpc)
add_subdirectory(external/openglcts)
# Single-binary targets
-if (DE_OS_IS_ANDROID)
- include_directories(executor)
- include_directories(${PROJECT_BINARY_DIR}/external/vulkancts/framework/vulkan)
-
- set(DEQP_SRCS
- framework/platform/android/tcuAndroidMain.cpp
- framework/platform/android/tcuAndroidJNI.cpp
- framework/platform/android/tcuAndroidPlatformCapabilityQueryJNI.cpp
- framework/platform/android/tcuTestLogParserJNI.cpp
- ${DEQP_MODULE_ENTRY_POINTS}
- )
-
- set(DEQP_LIBS
- tcutil-platform
- xecore
- ${DEQP_MODULE_LIBRARIES}
- )
-
- add_library(deqp SHARED ${DEQP_SRCS})
- target_link_libraries(deqp ${DEQP_LIBS})
-
- # Separate out the debug information because it's enormous
- add_custom_command(TARGET deqp POST_BUILD
- COMMAND ${CMAKE_STRIP} --only-keep-debug -o $<TARGET_FILE:deqp>.debug $<TARGET_FILE:deqp>
- COMMAND ${CMAKE_STRIP} -g $<TARGET_FILE:deqp>)
-
- # Needed by OpenGL CTS that defines its own activity but depends on
- # common Android support code.
- target_include_directories(deqp PRIVATE framework/platform/android)
-
-elseif (DE_OS_IS_IOS)
+if (DE_OS_IS_IOS)
# Code sign identity
set(DEQP_IOS_CODE_SIGN_IDENTITY "drawElements" CACHE STRING "Code sign identity for iOS build")
diff --git a/framework/platform/android/tcuAndroidNativeActivity.cpp b/framework/platform/android/tcuAndroidNativeActivity.cpp
index 6f8cd8f..b83e30f 100644
--- a/framework/platform/android/tcuAndroidNativeActivity.cpp
+++ b/framework/platform/android/tcuAndroidNativeActivity.cpp
@@ -116,23 +116,25 @@ namespace Android
NativeActivity::NativeActivity (ANativeActivity* activity)
: m_activity(activity)
{
- activity->instance = (void*)this;
- activity->callbacks->onStart = onStartCallback;
- activity->callbacks->onResume = onResumeCallback;
- activity->callbacks->onSaveInstanceState = onSaveInstanceStateCallback;
- activity->callbacks->onPause = onPauseCallback;
- activity->callbacks->onStop = onStopCallback;
- activity->callbacks->onDestroy = onDestroyCallback;
- activity->callbacks->onWindowFocusChanged = onWindowFocusChangedCallback;
- activity->callbacks->onNativeWindowCreated = onNativeWindowCreatedCallback;
- activity->callbacks->onNativeWindowResized = onNativeWindowResizedCallback;
- activity->callbacks->onNativeWindowRedrawNeeded = onNativeWindowRedrawNeededCallback;
- activity->callbacks->onNativeWindowDestroyed = onNativeWindowDestroyedCallback;
- activity->callbacks->onInputQueueCreated = onInputQueueCreatedCallback;
- activity->callbacks->onInputQueueDestroyed = onInputQueueDestroyedCallback;
- activity->callbacks->onContentRectChanged = onContentRectChangedCallback;
- activity->callbacks->onConfigurationChanged = onConfigurationChangedCallback;
- activity->callbacks->onLowMemory = onLowMemoryCallback;
+ if (activity) {
+ activity->instance = (void*)this;
+ activity->callbacks->onStart = onStartCallback;
+ activity->callbacks->onResume = onResumeCallback;
+ activity->callbacks->onSaveInstanceState = onSaveInstanceStateCallback;
+ activity->callbacks->onPause = onPauseCallback;
+ activity->callbacks->onStop = onStopCallback;
+ activity->callbacks->onDestroy = onDestroyCallback;
+ activity->callbacks->onWindowFocusChanged = onWindowFocusChangedCallback;
+ activity->callbacks->onNativeWindowCreated = onNativeWindowCreatedCallback;
+ activity->callbacks->onNativeWindowResized = onNativeWindowResizedCallback;
+ activity->callbacks->onNativeWindowRedrawNeeded = onNativeWindowRedrawNeededCallback;
+ activity->callbacks->onNativeWindowDestroyed = onNativeWindowDestroyedCallback;
+ activity->callbacks->onInputQueueCreated = onInputQueueCreatedCallback;
+ activity->callbacks->onInputQueueDestroyed = onInputQueueDestroyedCallback;
+ activity->callbacks->onContentRectChanged = onContentRectChangedCallback;
+ activity->callbacks->onConfigurationChanged = onConfigurationChangedCallback;
+ activity->callbacks->onLowMemory = onLowMemoryCallback;
+ }
}
NativeActivity::~NativeActivity (void)
diff --git a/framework/platform/android/tcuAndroidPlatform.cpp b/framework/platform/android/tcuAndroidPlatform.cpp
index 69ab384..d7288f6 100644
--- a/framework/platform/android/tcuAndroidPlatform.cpp
+++ b/framework/platform/android/tcuAndroidPlatform.cpp
@@ -22,6 +22,7 @@
*//*--------------------------------------------------------------------*/
#include "tcuAndroidPlatform.hpp"
+#include "tcuAndroidNativeActivity.hpp"
#include "tcuAndroidUtil.hpp"
#include "gluRenderContext.hpp"
#include "egluNativeDisplay.hpp"
@@ -170,7 +171,7 @@ eglu::NativeWindow* NativeWindowFactory::createWindow (const eglu::WindowParams&
Window* window = m_windowRegistry.tryAcquireWindow();
if (!window)
- throw ResourceError("Native window is not available", DE_NULL, __FILE__, __LINE__);
+ throw NotSupportedError("Native window is not available", DE_NULL, __FILE__, __LINE__);
return new NativeWindow(window, params.width, params.height, format);
}
@@ -286,6 +287,9 @@ static size_t getTotalSystemMemory (ANativeActivity* activity)
try
{
+ if (!activity)
+ throw tcu::InternalError("No activity (running from command line?");
+
const size_t totalMemory = getTotalAndroidSystemMemory(activity);
print("Device has %.2f MiB of system memory\n", static_cast<double>(totalMemory) / static_cast<double>(MiB));
return totalMemory;
@@ -382,3 +386,9 @@ bool Platform::hasDisplay (vk::wsi::Type wsiType) const
} // Android
} // tcu
+
+tcu::Platform* createPlatform (void)
+{
+ tcu::Android::NativeActivity activity(NULL);
+ return new tcu::Android::Platform(activity);
+}
--
2.39.1

View File

@@ -0,0 +1,161 @@
From 6d99990e93869e361035b7c06c05183041dec8b4 Mon Sep 17 00:00:00 2001
From: Ricardo Garcia <rgarcia@igalia.com>
Date: Mon, 20 Feb 2023 13:57:53 +0100
Subject: [PATCH] Fix build for the surfaceless and null-WS target platforms
Both platforms should not be considered for building Vulkan Video, which
is only available in the normal Linux and Win32 targets, and their
createLibrary platform methods do not take a library type argument.
No test results should be affected by these changes.
Components: Framework
VK-GL-CTS issue: 4295
Change-Id: I4de5b42685899099a9cfcf7da64fe299fef61ffc
---
external/vulkancts/framework/vulkan/vkPlatform.hpp | 2 +-
.../vulkancts/modules/vulkan/api/vktApiVersionCheck.cpp | 2 +-
external/vulkancts/modules/vulkan/video/CMakeLists.txt | 2 +-
.../modules/vulkan/video/vktVideoSessionNvUtils.cpp | 2 +-
external/vulkancts/modules/vulkan/vktTestPackage.cpp | 2 +-
external/vulkancts/vkscpc/vkscpc.cpp | 2 +-
external/vulkancts/vkscserver/vksServices.cpp | 2 +-
framework/delibs/debase/deDefs.h | 6 ++++++
framework/platform/CMakeLists.txt | 1 +
targets/nullws/nullws.cmake | 1 +
10 files changed, 15 insertions(+), 7 deletions(-)
diff --git a/external/vulkancts/framework/vulkan/vkPlatform.hpp b/external/vulkancts/framework/vulkan/vkPlatform.hpp
index bec39d326..7574166b9 100644
--- a/external/vulkancts/framework/vulkan/vkPlatform.hpp
+++ b/external/vulkancts/framework/vulkan/vkPlatform.hpp
@@ -399,7 +399,7 @@ public:
Platform (void) {}
~Platform (void) {}
-#if (DE_OS == DE_OS_WIN32) || (DE_OS == DE_OS_UNIX)
+#ifdef DE_PLATFORM_USE_LIBRARY_TYPE
virtual Library* createLibrary (LibraryType libraryType = LIBRARY_TYPE_VULKAN, const char* libraryPath = DE_NULL) const = 0;
#else
virtual Library* createLibrary (const char* libraryPath = DE_NULL) const = 0;
diff --git a/external/vulkancts/modules/vulkan/api/vktApiVersionCheck.cpp b/external/vulkancts/modules/vulkan/api/vktApiVersionCheck.cpp
index 5f6d884f4..af6bf6938 100644
--- a/external/vulkancts/modules/vulkan/api/vktApiVersionCheck.cpp
+++ b/external/vulkancts/modules/vulkan/api/vktApiVersionCheck.cpp
@@ -133,7 +133,7 @@ public:
tcu::TestLog& log = m_context.getTestContext().getLog();
const deUint32 apiVersion = m_context.getUsedApiVersion();
const vk::Platform& platform = m_context.getTestContext().getPlatform().getVulkanPlatform();
-#if (DE_OS == DE_OS_WIN32) || (DE_OS == DE_OS_UNIX)
+#ifdef DE_PLATFORM_USE_LIBRARY_TYPE
de::MovePtr<vk::Library> vkLibrary = de::MovePtr<vk::Library>(platform.createLibrary(vk::Platform::LibraryType::LIBRARY_TYPE_VULKAN, m_context.getTestContext().getCommandLine().getVkLibraryPath()));
#else
de::MovePtr<vk::Library> vkLibrary = de::MovePtr<vk::Library>(platform.createLibrary(m_context.getTestContext().getCommandLine().getVkLibraryPath()));
diff --git a/external/vulkancts/modules/vulkan/video/CMakeLists.txt b/external/vulkancts/modules/vulkan/video/CMakeLists.txt
index 464adb1e2..f9a2044e7 100644
--- a/external/vulkancts/modules/vulkan/video/CMakeLists.txt
+++ b/external/vulkancts/modules/vulkan/video/CMakeLists.txt
@@ -1,5 +1,5 @@
include_directories(..)
-if (DE_OS_IS_WIN32 OR DE_OS_IS_UNIX)
+if ((DE_OS_IS_WIN32 OR DE_OS_IS_UNIX) AND NOT DEQP_USE_SURFACELESS AND NOT DEQP_USE_NULLWS)
include_directories(${FFMPEG_INCLUDE_PATH})
add_compile_definitions(DE_BUILD_VIDEO)
endif()
diff --git a/external/vulkancts/modules/vulkan/video/vktVideoSessionNvUtils.cpp b/external/vulkancts/modules/vulkan/video/vktVideoSessionNvUtils.cpp
index 00491930c..9323278be 100644
--- a/external/vulkancts/modules/vulkan/video/vktVideoSessionNvUtils.cpp
+++ b/external/vulkancts/modules/vulkan/video/vktVideoSessionNvUtils.cpp
@@ -148,7 +148,7 @@ private:
};
NvFunctions::NvFunctions (const vk::Platform& platform)
-#ifdef DE_BUILD_VIDEO
+#ifdef DE_PLATFORM_USE_LIBRARY_TYPE
: m_library (de::MovePtr<vk::Library>(platform.createLibrary(vk::Platform::LIBRARY_TYPE_VULKAN_VIDEO_DECODE_PARSER, DE_NULL)))
#else
: m_library (de::MovePtr<vk::Library>(platform.createLibrary()))
diff --git a/external/vulkancts/modules/vulkan/vktTestPackage.cpp b/external/vulkancts/modules/vulkan/vktTestPackage.cpp
index 959a9d368..cac454c71 100644
--- a/external/vulkancts/modules/vulkan/vktTestPackage.cpp
+++ b/external/vulkancts/modules/vulkan/vktTestPackage.cpp
@@ -204,7 +204,7 @@ static void restoreStandardOutput () { qpRedirectOut(openWrite, open
static MovePtr<vk::Library> createLibrary (tcu::TestContext& testCtx)
{
-#if (DE_OS == DE_OS_WIN32) || (DE_OS == DE_OS_UNIX)
+#ifdef DE_PLATFORM_USE_LIBRARY_TYPE
return MovePtr<vk::Library>(testCtx.getPlatform().getVulkanPlatform().createLibrary(vk::Platform::LIBRARY_TYPE_VULKAN, testCtx.getCommandLine().getVkLibraryPath()));
#else
return MovePtr<vk::Library>(testCtx.getPlatform().getVulkanPlatform().createLibrary(testCtx.getCommandLine().getVkLibraryPath()));
diff --git a/external/vulkancts/vkscpc/vkscpc.cpp b/external/vulkancts/vkscpc/vkscpc.cpp
index 55b5665c8..91725633a 100644
--- a/external/vulkancts/vkscpc/vkscpc.cpp
+++ b/external/vulkancts/vkscpc/vkscpc.cpp
@@ -288,7 +288,7 @@ int main (int argc, char** argv)
tcu::DirArchive archive {""};
tcu::TestLog log { cmdLine.getOption<opt::LogFile>().c_str() }; log.supressLogging(true);
de::SharedPtr<tcu::Platform> platform {createPlatform()};
-#if (DE_OS == DE_OS_WIN32) || (DE_OS == DE_OS_UNIX)
+#ifdef DE_PLATFORM_USE_LIBRARY_TYPE
de::SharedPtr<vk::Library> library {platform->getVulkanPlatform().createLibrary(vk::Platform::LIBRARY_TYPE_VULKAN, DE_NULL)};
#else
de::SharedPtr<vk::Library> library {platform->getVulkanPlatform().createLibrary(DE_NULL)};
diff --git a/external/vulkancts/vkscserver/vksServices.cpp b/external/vulkancts/vkscserver/vksServices.cpp
index 461c7a349..fe1160edc 100644
--- a/external/vulkancts/vkscserver/vksServices.cpp
+++ b/external/vulkancts/vkscserver/vksServices.cpp
@@ -163,7 +163,7 @@ VkscServer* createServerVKSC(const std::string& logFile)
tcu::DirArchive archive {""};
tcu::TestLog log { logFile.c_str() }; log.supressLogging(true);
tcu::Platform* platform {createPlatform()};
-#if (DE_OS == DE_OS_WIN32) || (DE_OS == DE_OS_UNIX)
+#ifdef DE_PLATFORM_USE_LIBRARY_TYPE
vk::Library* library {platform->getVulkanPlatform().createLibrary(vk::Platform::LIBRARY_TYPE_VULKAN, DE_NULL)};
#else
vk::Library* library {platform->getVulkanPlatform().createLibrary(DE_NULL)};
diff --git a/framework/delibs/debase/deDefs.h b/framework/delibs/debase/deDefs.h
index 39cd65d0b..2885fe5c5 100644
--- a/framework/delibs/debase/deDefs.h
+++ b/framework/delibs/debase/deDefs.h
@@ -101,6 +101,12 @@
# error Unknown operating system.
#endif
+#if ((DE_OS == DE_OS_WIN32) || (DE_OS == DE_OS_UNIX)) && !defined(DEQP_SURFACELESS) && !defined(NULLWS)
+# define DE_PLATFORM_USE_LIBRARY_TYPE 1
+#else
+# undef DE_PLATFORM_USE_LIBRARY_TYPE
+#endif
+
/* CPUs */
#define DE_CPU_VANILLA 0
#define DE_CPU_X86 1
diff --git a/framework/platform/CMakeLists.txt b/framework/platform/CMakeLists.txt
index 00c53e3c9..b2a1d57b6 100644
--- a/framework/platform/CMakeLists.txt
+++ b/framework/platform/CMakeLists.txt
@@ -113,6 +113,7 @@ if (NOT DEFINED TCUTIL_PLATFORM_SRCS)
endif()
elseif (DE_OS_IS_UNIX AND DEQP_USE_SURFACELESS)
+ add_definitions(-DDEQP_SURFACELESS=1)
set(TCUTIL_PLATFORM_SRCS
surfaceless/tcuSurfacelessPlatform.hpp
surfaceless/tcuSurfacelessPlatform.cpp
diff --git a/targets/nullws/nullws.cmake b/targets/nullws/nullws.cmake
index 81a7f9ea2..5f6f9b773 100644
--- a/targets/nullws/nullws.cmake
+++ b/targets/nullws/nullws.cmake
@@ -1,6 +1,7 @@
message("*** Using nullws target")
set(DEQP_TARGET_NAME "nullws")
+set(DEQP_USE_NULLWS ON)
add_definitions(-DNULLWS)
find_library(GLES2_LIBRARY NAMES libGLESv2 GLESv2)
--
2.39.1

View File

@@ -0,0 +1,27 @@
From c2d5252f4a8be94720235feb9e358ecb0a2e8e11 Mon Sep 17 00:00:00 2001
From: Helen Koike <helen.koike@collabora.com>
Date: Tue, 27 Sep 2022 12:35:22 -0300
Subject: [PATCH 2/2] Android prints to stdout instead of logcat
Signed-off-by: Helen Koike <helen.koike@collabora.com>
Signed-off-by: David Heidelberg <david.heidelberg@collabora.com>
---
framework/qphelper/qpDebugOut.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/framework/qphelper/qpDebugOut.c b/framework/qphelper/qpDebugOut.c
index 6579e9f..c200c6f 100644
--- a/framework/qphelper/qpDebugOut.c
+++ b/framework/qphelper/qpDebugOut.c
@@ -98,7 +98,7 @@ void qpDiev (const char* format, va_list args)
}
/* print() implementation. */
-#if (DE_OS == DE_OS_ANDROID)
+#if (0)
#include <android/log.h>
--
2.39.1

View File

@@ -6,22 +6,13 @@ set -ex
git config --global user.email "mesa@example.com"
git config --global user.name "Mesa CI"
git clone \
https://github.com/helen-fornazier/VK-GL-CTS.git \
-b vulkan-cts-1.3.3.1_mesa-android-2023-01-19 \
https://github.com/KhronosGroup/VK-GL-CTS.git \
-b vulkan-cts-1.3.5.0 \
--depth 1 \
/VK-GL-CTS
pushd /VK-GL-CTS
cts_commits_to_backport=(
# Update zlib link to an available version.
# vulkan-cts-1.3.3.0 uses zlib 1.2.12 which was removed from zlib server due to
# a CVE. See https://zlib.net/
# FIXME: Remove this patch when uprev to 1.3.4.0+
6bb2e7d64261bedb503947b1b251b1eeeb49be73
# Fix a bug in 1.3.3.0 that affects some new formats
4fa2b40411921b304f5dad8d106b212ad5b0f172
)
cts_commits_to_backport=()
for commit in "${cts_commits_to_backport[@]}"
do
@@ -29,6 +20,13 @@ do
"https://github.com/KhronosGroup/VK-GL-CTS/commit/$commit.patch" | git am -
done
# Fix surfaceless build.
git am < $OLDPWD/.gitlab-ci/container/0001-Fix-build-for-the-surfaceless-and-null-WS-target-pla.patch
# Android specific patches.
git am < $OLDPWD/.gitlab-ci/container/0001-Allow-running-on-Android-from-the-command-line.patch
git am < $OLDPWD/.gitlab-ci/container/0002-Android-prints-to-stdout-instead-of-logcat.patch
# --insecure is due to SSL cert failures hitting sourceforge for zlib and
# libpng (sigh). The archives get their checksums checked anyway, and git
# always goes through ssh or https.

View File

@@ -15,13 +15,13 @@ variables:
DEBIAN_X86_TEST_IMAGE_PATH: ${DEBIAN_X86_TEST_IMAGE_GL_PATH}
DEBIAN_X86_TEST_ANDROID_IMAGE_PATH: "debian/x86_test-android"
DEBIAN_X86_TEST_ANDROID_TAG: "2023-02-17-deqp-build"
DEBIAN_X86_TEST_GL_TAG: "2023-02-17-deqp-build"
DEBIAN_X86_TEST_VK_TAG: "2023-02-20-uprev-vkd3d-proton"
DEBIAN_X86_TEST_ANDROID_TAG: "2023-02-20-uprev-deqp-v2"
DEBIAN_X86_TEST_GL_TAG: "2023-02-20-uprev-deqp-v2"
DEBIAN_X86_TEST_VK_TAG: "2023-02-20-uprev-deqp-v2"
ALPINE_X86_BUILD_TAG: "2023-02-26-add-bash-coreutils"
FEDORA_X86_BUILD_TAG: "2023-02-09-f36"
KERNEL_ROOTFS_TAG: "2023-02-28-add-CI_JOB_STARTED_AT"
KERNEL_ROOTFS_TAG: "2023-03-02-uprev-deqp"
WINDOWS_X64_VS_PATH: "windows/x64_vs"
WINDOWS_X64_VS_TAG: "2022-10-20-upgrade-zlib"

View File

@@ -1,53 +1,4 @@
# Test bugs with GPL (all of them should be fixed with recent CTS).
dEQP-VK.fragment_shading_rate.dynamic_rendering.primary_cmd_buff.fast_linked_library.misc_tests.sample_mask_test,Fail
dEQP-VK.fragment_shading_rate.dynamic_rendering.primary_cmd_buff.pipeline_library.misc_tests.sample_mask_test,Fail
dEQP-VK.fragment_shading_rate.renderpass2.fast_linked_library.misc_tests.sample_mask_test,Fail
dEQP-VK.fragment_shading_rate.renderpass2.pipeline_library.misc_tests.sample_mask_test,Fail
dEQP-VK.pipeline.fast_linked_library.creation_feedback.graphics_tests.vertex_stage_fragment_stage,Fail
dEQP-VK.pipeline.fast_linked_library.creation_feedback.graphics_tests.vertex_stage_fragment_stage_delayed_destroy,Fail
dEQP-VK.pipeline.fast_linked_library.creation_feedback.graphics_tests.vertex_stage_fragment_stage_no_cache,Fail
dEQP-VK.pipeline.fast_linked_library.creation_feedback.graphics_tests.vertex_stage_geometry_stage_fragment_stage,Fail
dEQP-VK.pipeline.fast_linked_library.creation_feedback.graphics_tests.vertex_stage_geometry_stage_fragment_stage_delayed_destroy,Fail
dEQP-VK.pipeline.fast_linked_library.creation_feedback.graphics_tests.vertex_stage_geometry_stage_fragment_stage_no_cache,Fail
dEQP-VK.pipeline.fast_linked_library.creation_feedback.graphics_tests.vertex_stage_tessellation_control_stage_tessellation_evaluation_stage_fragment_stage,Fail
dEQP-VK.pipeline.fast_linked_library.creation_feedback.graphics_tests.vertex_stage_tessellation_control_stage_tessellation_evaluation_stage_fragment_stage_delayed_destroy,Fail
dEQP-VK.pipeline.fast_linked_library.creation_feedback.graphics_tests.vertex_stage_tessellation_control_stage_tessellation_evaluation_stage_fragment_stage_no_cache,Fail
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls1_combined_image_sampler,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls1_input_attachment,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls1_sampled_image,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls1_sampler,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls1_storage_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls1_storage_image,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls1_storage_texel_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls1_uniform_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls1_uniform_texel_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls2_combined_image_sampler,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls2_input_attachment,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls2_sampled_image,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls2_sampler,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls2_storage_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls2_storage_image,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls2_storage_texel_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls2_uniform_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls2_uniform_texel_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding1_numcalls2_combined_image_sampler,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding1_numcalls2_input_attachment,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding1_numcalls2_sampled_image,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding1_numcalls2_sampler,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding1_numcalls2_storage_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding1_numcalls2_storage_image,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding1_numcalls2_storage_texel_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding1_numcalls2_uniform_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding1_numcalls2_uniform_texel_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding3_numcalls2_combined_image_sampler,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding3_numcalls2_input_attachment,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding3_numcalls2_sampled_image,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding3_numcalls2_sampler,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding3_numcalls2_storage_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding3_numcalls2_storage_image,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding3_numcalls2_storage_texel_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding3_numcalls2_uniform_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding3_numcalls2_uniform_texel_buffer,Crash
dEQP-VK.pipeline.pipeline_library.creation_feedback.graphics_tests.vertex_stage_fragment_stage,Crash
dEQP-VK.pipeline.pipeline_library.creation_feedback.graphics_tests.vertex_stage_fragment_stage_delayed_destroy,Crash
dEQP-VK.pipeline.pipeline_library.creation_feedback.graphics_tests.vertex_stage_fragment_stage_no_cache,Crash
@@ -57,3 +8,111 @@ dEQP-VK.pipeline.pipeline_library.creation_feedback.graphics_tests.vertex_stage_
dEQP-VK.pipeline.pipeline_library.creation_feedback.graphics_tests.vertex_stage_tessellation_control_stage_tessellation_evaluation_stage_fragment_stage,Crash
dEQP-VK.pipeline.pipeline_library.creation_feedback.graphics_tests.vertex_stage_tessellation_control_stage_tessellation_evaluation_stage_fragment_stage_delayed_destroy,Crash
dEQP-VK.pipeline.pipeline_library.creation_feedback.graphics_tests.vertex_stage_tessellation_control_stage_tessellation_evaluation_stage_fragment_stage_no_cache,Crash
# New CTS failures in 1.3.5.0
dEQP-VK.binding_model.descriptor_buffer.multiple.compute_comp_buffers16_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.compute_comp_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.compute_comp_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.compute_comp_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.compute_comp_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.compute_comp_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.compute_comp_buffers32_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.compute_comp_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.compute_comp_buffers8_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_ahit_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_ahit_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_ahit_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_ahit_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_ahit_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_ahit_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_ahit_buffers8_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_call_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_call_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_call_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_call_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_call_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_call_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_call_buffers8_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_chit_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_chit_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_chit_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_chit_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_chit_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_chit_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_chit_buffers8_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_comp_buffers16_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_comp_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_comp_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_comp_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_comp_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_comp_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_comp_buffers32_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_comp_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_comp_buffers8_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_frag_buffers16_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_frag_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_frag_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_frag_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_frag_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_frag_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_frag_buffers32_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_frag_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_frag_buffers8_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_geom_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_geom_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_geom_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_geom_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_geom_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_geom_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_geom_buffers8_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_miss_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_miss_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_miss_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_miss_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_miss_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_miss_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_miss_buffers8_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_rgen_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_rgen_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_rgen_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_rgen_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_rgen_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_rgen_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_rgen_buffers8_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_sect_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_sect_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_sect_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_sect_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_sect_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_sect_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_sect_buffers8_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tesc_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tesc_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tesc_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tesc_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tesc_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tesc_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tesc_buffers8_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tese_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tese_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tese_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tese_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tese_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tese_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tese_buffers8_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_vert_buffers16_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_vert_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_vert_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_vert_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_vert_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_vert_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_vert_buffers32_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_vert_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_vert_buffers8_sets1,Crash
dEQP-VK.dynamic_rendering.primary_cmd_buff.random.seed3_tessellation,Fail
dEQP-VK.dynamic_rendering.primary_cmd_buff.random.seed49_tessellation,Fail
dEQP-VK.dynamic_rendering.primary_cmd_buff.random.seed65_tessellation,Fail
dEQP-VK.dynamic_rendering.primary_cmd_buff.random.seed81_tessellation,Fail
dEQP-VK.dynamic_rendering.primary_cmd_buff.random.seed8_tessellation,Fail
dEQP-VK.pipeline.fast_linked_library.extended_dynamic_state.two_draws_static.topology_line,Fail
dEQP-VK.pipeline.fast_linked_library.multisample_interpolation.sample_interpolation_consistency.component_1.128_128_1.samples_8,Fail

View File

@@ -1,2 +1,9 @@
dEQP-VK.draw.renderpass.linear_interpolation.offset_max_2_samples
dEQP-VK.dynamic_rendering.basic.*
dEQP-VK.dynamic_rendering.primary_cmd_buff.basic.2_secondary_cmdbuffers_resuming
dEQP-VK.dynamic_rendering.primary_cmd_buff.basic.contents_secondary_primary_cmdbuffers_resuming
dEQP-VK.pipeline.fast_linked_library.extended_dynamic_state.before_draw.line_stipple_disable
dEQP-VK.pipeline.fast_linked_library.image.suballocation.sampling_type.combined.view_type.cube_array.format.r8g8b8a8_unorm.count_4.size.32x32_array_of_36
dEQP-VK.pipeline.pipeline_library.extended_dynamic_state.two_draws_static.line_stipple_disable
dEQP-VK.texture.filtering.3d.combinations.nearest.linear.mirror_clamp_to_edge.mirror_clamp_to_edge.repeat
dEQP-VK.pipeline.fast_linked_library.extended_dynamic_state.two_draws_static.topology_line

View File

@@ -4,55 +4,6 @@ dEQP-VK.ray_tracing_pipeline.acceleration_structures.copy_within_pipeline.gpu.st
dEQP-VK.ray_tracing_pipeline.acceleration_structures.copy_within_pipeline.gpu.stage_as_copy_bit,Crash
# Test bugs with GPL (all of them should be fixed with recent CTS).
dEQP-VK.fragment_shading_rate.dynamic_rendering.primary_cmd_buff.fast_linked_library.misc_tests.sample_mask_test,Fail
dEQP-VK.fragment_shading_rate.dynamic_rendering.primary_cmd_buff.pipeline_library.misc_tests.sample_mask_test,Fail
dEQP-VK.fragment_shading_rate.renderpass2.fast_linked_library.misc_tests.sample_mask_test,Fail
dEQP-VK.fragment_shading_rate.renderpass2.pipeline_library.misc_tests.sample_mask_test,Fail
dEQP-VK.pipeline.fast_linked_library.creation_feedback.graphics_tests.vertex_stage_fragment_stage,Fail
dEQP-VK.pipeline.fast_linked_library.creation_feedback.graphics_tests.vertex_stage_fragment_stage_delayed_destroy,Fail
dEQP-VK.pipeline.fast_linked_library.creation_feedback.graphics_tests.vertex_stage_fragment_stage_no_cache,Fail
dEQP-VK.pipeline.fast_linked_library.creation_feedback.graphics_tests.vertex_stage_geometry_stage_fragment_stage,Fail
dEQP-VK.pipeline.fast_linked_library.creation_feedback.graphics_tests.vertex_stage_geometry_stage_fragment_stage_delayed_destroy,Fail
dEQP-VK.pipeline.fast_linked_library.creation_feedback.graphics_tests.vertex_stage_geometry_stage_fragment_stage_no_cache,Fail
dEQP-VK.pipeline.fast_linked_library.creation_feedback.graphics_tests.vertex_stage_tessellation_control_stage_tessellation_evaluation_stage_fragment_stage,Fail
dEQP-VK.pipeline.fast_linked_library.creation_feedback.graphics_tests.vertex_stage_tessellation_control_stage_tessellation_evaluation_stage_fragment_stage_delayed_destroy,Fail
dEQP-VK.pipeline.fast_linked_library.creation_feedback.graphics_tests.vertex_stage_tessellation_control_stage_tessellation_evaluation_stage_fragment_stage_no_cache,Fail
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls1_combined_image_sampler,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls1_input_attachment,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls1_sampled_image,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls1_sampler,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls1_storage_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls1_storage_image,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls1_storage_texel_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls1_uniform_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls1_uniform_texel_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls2_combined_image_sampler,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls2_input_attachment,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls2_sampled_image,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls2_sampler,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls2_storage_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls2_storage_image,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls2_storage_texel_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls2_uniform_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls2_uniform_texel_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding1_numcalls2_combined_image_sampler,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding1_numcalls2_input_attachment,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding1_numcalls2_sampled_image,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding1_numcalls2_sampler,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding1_numcalls2_storage_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding1_numcalls2_storage_image,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding1_numcalls2_storage_texel_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding1_numcalls2_uniform_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding1_numcalls2_uniform_texel_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding3_numcalls2_combined_image_sampler,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding3_numcalls2_input_attachment,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding3_numcalls2_sampled_image,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding3_numcalls2_sampler,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding3_numcalls2_storage_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding3_numcalls2_storage_image,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding3_numcalls2_storage_texel_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding3_numcalls2_uniform_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding3_numcalls2_uniform_texel_buffer,Crash
dEQP-VK.pipeline.pipeline_library.creation_feedback.graphics_tests.vertex_stage_fragment_stage,Crash
dEQP-VK.pipeline.pipeline_library.creation_feedback.graphics_tests.vertex_stage_fragment_stage_delayed_destroy,Crash
dEQP-VK.pipeline.pipeline_library.creation_feedback.graphics_tests.vertex_stage_fragment_stage_no_cache,Crash
@@ -62,3 +13,105 @@ dEQP-VK.pipeline.pipeline_library.creation_feedback.graphics_tests.vertex_stage_
dEQP-VK.pipeline.pipeline_library.creation_feedback.graphics_tests.vertex_stage_tessellation_control_stage_tessellation_evaluation_stage_fragment_stage,Crash
dEQP-VK.pipeline.pipeline_library.creation_feedback.graphics_tests.vertex_stage_tessellation_control_stage_tessellation_evaluation_stage_fragment_stage_delayed_destroy,Crash
dEQP-VK.pipeline.pipeline_library.creation_feedback.graphics_tests.vertex_stage_tessellation_control_stage_tessellation_evaluation_stage_fragment_stage_no_cache,Crash
# New CTS failures in 1.3.5.0
dEQP-VK.binding_model.descriptor_buffer.multiple.compute_comp_buffers16_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.compute_comp_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.compute_comp_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.compute_comp_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.compute_comp_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.compute_comp_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.compute_comp_buffers32_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.compute_comp_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.compute_comp_buffers8_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_ahit_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_ahit_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_ahit_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_ahit_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_ahit_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_ahit_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_ahit_buffers8_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_call_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_call_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_call_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_call_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_call_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_call_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_call_buffers8_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_chit_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_chit_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_chit_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_chit_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_chit_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_chit_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_chit_buffers8_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_comp_buffers16_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_comp_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_comp_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_comp_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_comp_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_comp_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_comp_buffers32_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_comp_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_comp_buffers8_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_frag_buffers16_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_frag_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_frag_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_frag_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_frag_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_frag_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_frag_buffers32_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_frag_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_frag_buffers8_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_geom_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_geom_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_geom_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_geom_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_geom_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_geom_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_geom_buffers8_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_miss_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_miss_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_miss_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_miss_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_miss_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_miss_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_miss_buffers8_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_rgen_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_rgen_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_rgen_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_rgen_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_rgen_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_rgen_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_rgen_buffers8_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_sect_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_sect_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_sect_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_sect_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_sect_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_sect_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_sect_buffers8_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tesc_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tesc_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tesc_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tesc_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tesc_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tesc_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tesc_buffers8_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tese_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tese_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tese_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tese_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tese_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tese_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tese_buffers8_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_vert_buffers16_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_vert_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_vert_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_vert_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_vert_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_vert_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_vert_buffers32_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_vert_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_vert_buffers8_sets1,Crash
dEQP-VK.pipeline.fast_linked_library.extended_dynamic_state.before_draw.line_stipple_enable,Fail

View File

@@ -14,3 +14,4 @@ dEQP-VK.rasterization.primitives_multisample_2_bit.static_stipple.bresenham_line
dEQP-VK.draw.renderpass.linear_interpolation.no_offset_8_samples
dEQP-VK.pipeline.fast_linked_library.multisample_interpolation.sample_interpolate_at_ignores_centroid.128_128_1.samples_8
dEQP-VK.pipeline.fast_linked_library.extended_dynamic_state.before_draw.line_stipple_enable

View File

@@ -32,55 +32,6 @@ dEQP-VK.api.copy_and_blit.dedicated_allocation.resolve_image.diff_layout_copy_be
dEQP-VK.api.copy_and_blit.dedicated_allocation.resolve_image.diff_layout_copy_before_resolving.8_bit_transfer_src_optimal_general_bind_offset,Fail
# Test bugs with GPL (all of them should be fixed with recent CTS).
dEQP-VK.fragment_shading_rate.dynamic_rendering.primary_cmd_buff.fast_linked_library.misc_tests.sample_mask_test,Fail
dEQP-VK.fragment_shading_rate.dynamic_rendering.primary_cmd_buff.pipeline_library.misc_tests.sample_mask_test,Fail
dEQP-VK.fragment_shading_rate.renderpass2.fast_linked_library.misc_tests.sample_mask_test,Fail
dEQP-VK.fragment_shading_rate.renderpass2.pipeline_library.misc_tests.sample_mask_test,Fail
dEQP-VK.pipeline.fast_linked_library.creation_feedback.graphics_tests.vertex_stage_fragment_stage,Fail
dEQP-VK.pipeline.fast_linked_library.creation_feedback.graphics_tests.vertex_stage_fragment_stage_delayed_destroy,Fail
dEQP-VK.pipeline.fast_linked_library.creation_feedback.graphics_tests.vertex_stage_fragment_stage_no_cache,Fail
dEQP-VK.pipeline.fast_linked_library.creation_feedback.graphics_tests.vertex_stage_geometry_stage_fragment_stage,Fail
dEQP-VK.pipeline.fast_linked_library.creation_feedback.graphics_tests.vertex_stage_geometry_stage_fragment_stage_delayed_destroy,Fail
dEQP-VK.pipeline.fast_linked_library.creation_feedback.graphics_tests.vertex_stage_geometry_stage_fragment_stage_no_cache,Fail
dEQP-VK.pipeline.fast_linked_library.creation_feedback.graphics_tests.vertex_stage_tessellation_control_stage_tessellation_evaluation_stage_fragment_stage,Fail
dEQP-VK.pipeline.fast_linked_library.creation_feedback.graphics_tests.vertex_stage_tessellation_control_stage_tessellation_evaluation_stage_fragment_stage_delayed_destroy,Fail
dEQP-VK.pipeline.fast_linked_library.creation_feedback.graphics_tests.vertex_stage_tessellation_control_stage_tessellation_evaluation_stage_fragment_stage_no_cache,Fail
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls1_combined_image_sampler,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls1_input_attachment,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls1_sampled_image,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls1_sampler,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls1_storage_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls1_storage_image,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls1_storage_texel_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls1_uniform_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls1_uniform_texel_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls2_combined_image_sampler,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls2_input_attachment,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls2_sampled_image,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls2_sampler,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls2_storage_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls2_storage_image,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls2_storage_texel_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls2_uniform_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls2_uniform_texel_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding1_numcalls2_combined_image_sampler,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding1_numcalls2_input_attachment,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding1_numcalls2_sampled_image,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding1_numcalls2_sampler,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding1_numcalls2_storage_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding1_numcalls2_storage_image,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding1_numcalls2_storage_texel_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding1_numcalls2_uniform_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding1_numcalls2_uniform_texel_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding3_numcalls2_combined_image_sampler,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding3_numcalls2_input_attachment,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding3_numcalls2_sampled_image,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding3_numcalls2_sampler,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding3_numcalls2_storage_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding3_numcalls2_storage_image,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding3_numcalls2_storage_texel_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding3_numcalls2_uniform_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding3_numcalls2_uniform_texel_buffer,Crash
dEQP-VK.pipeline.pipeline_library.creation_feedback.graphics_tests.vertex_stage_fragment_stage,Crash
dEQP-VK.pipeline.pipeline_library.creation_feedback.graphics_tests.vertex_stage_fragment_stage_delayed_destroy,Crash
dEQP-VK.pipeline.pipeline_library.creation_feedback.graphics_tests.vertex_stage_fragment_stage_no_cache,Crash
@@ -90,3 +41,115 @@ dEQP-VK.pipeline.pipeline_library.creation_feedback.graphics_tests.vertex_stage_
dEQP-VK.pipeline.pipeline_library.creation_feedback.graphics_tests.vertex_stage_tessellation_control_stage_tessellation_evaluation_stage_fragment_stage,Crash
dEQP-VK.pipeline.pipeline_library.creation_feedback.graphics_tests.vertex_stage_tessellation_control_stage_tessellation_evaluation_stage_fragment_stage_delayed_destroy,Crash
dEQP-VK.pipeline.pipeline_library.creation_feedback.graphics_tests.vertex_stage_tessellation_control_stage_tessellation_evaluation_stage_fragment_stage_no_cache,Crash
# New CTS failures in 1.3.5.0
dEQP-VK.binding_model.descriptor_buffer.multiple.compute_comp_buffers16_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.compute_comp_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.compute_comp_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.compute_comp_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.compute_comp_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.compute_comp_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.compute_comp_buffers32_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.compute_comp_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.compute_comp_buffers8_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_ahit_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_ahit_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_ahit_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_ahit_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_ahit_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_ahit_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_ahit_buffers8_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_call_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_call_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_call_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_call_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_call_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_call_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_call_buffers8_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_chit_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_chit_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_chit_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_chit_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_chit_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_chit_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_chit_buffers8_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_comp_buffers16_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_comp_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_comp_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_comp_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_comp_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_comp_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_comp_buffers32_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_comp_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_comp_buffers8_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_frag_buffers16_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_frag_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_frag_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_frag_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_frag_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_frag_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_frag_buffers32_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_frag_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_frag_buffers8_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_geom_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_geom_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_geom_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_geom_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_geom_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_geom_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_geom_buffers8_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_miss_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_miss_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_miss_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_miss_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_miss_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_miss_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_miss_buffers8_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_rgen_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_rgen_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_rgen_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_rgen_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_rgen_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_rgen_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_rgen_buffers8_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_sect_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_sect_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_sect_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_sect_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_sect_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_sect_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_sect_buffers8_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tesc_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tesc_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tesc_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tesc_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tesc_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tesc_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tesc_buffers8_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tese_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tese_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tese_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tese_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tese_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tese_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tese_buffers8_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_vert_buffers16_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_vert_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_vert_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_vert_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_vert_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_vert_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_vert_buffers32_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_vert_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_vert_buffers8_sets1,Crash
dEQP-VK.dynamic_rendering.primary_cmd_buff.random.seed3_tessellation,Fail
dEQP-VK.dynamic_rendering.primary_cmd_buff.random.seed46_geometry,Fail
dEQP-VK.dynamic_rendering.primary_cmd_buff.random.seed49_tessellation,Fail
dEQP-VK.dynamic_rendering.primary_cmd_buff.random.seed50_geometry,Fail
dEQP-VK.dynamic_rendering.primary_cmd_buff.random.seed52_geometry,Fail
dEQP-VK.dynamic_rendering.primary_cmd_buff.random.seed59_geometry,Fail
dEQP-VK.dynamic_rendering.primary_cmd_buff.random.seed65_tessellation,Fail
dEQP-VK.dynamic_rendering.primary_cmd_buff.random.seed6_geometry,Fail
dEQP-VK.dynamic_rendering.primary_cmd_buff.random.seed81_tessellation,Fail
dEQP-VK.dynamic_rendering.primary_cmd_buff.random.seed8_tessellation,Fail
dEQP-VK.pipeline.fast_linked_library.multisample_interpolation.sample_interpolation_consistency.component_1.128_128_1.samples_8,Fail

View File

@@ -1,2 +1,5 @@
dEQP-VK.dynamic_rendering.basic.*
dEQP-VK.reconvergence.workgroup_uniform_control_flow_elect.compute.nesting4.2.35
dEQP-VK.draw.renderpass.linear_interpolation.offset_max_2_samples
dEQP-VK.dynamic_rendering.primary_cmd_buff.basic.2_cmdbuffers_resuming
dEQP-VK.dynamic_rendering.primary_cmd_buff.basic.2_secondary_2_primary_cmdbuffers_resuming

View File

@@ -408,6 +408,43 @@ dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_49_13.samples_8.d16_unorm_s8_
dEQP-VK.texture.mipmap.2d.image_view_min_lod.base_level.linear_linear,Fail
dEQP-VK.texture.mipmap.3d.image_view_min_lod.base_level.linear_linear,Fail
# uprev kernel 6.1
dEQP-VK.ycbcr.storage_image_write.r10x6_unorm_pack16.1024_128_1.joint,Crash
dEQP-VK.ycbcr.storage_image_write.r10x6g10x6_unorm_2pack16.66_32_1.joint,Crash
# New CTS failures in 1.3.5.0
dEQP-VK.api.image_clearing.core.clear_depth_stencil_image.2d.remaining_array_layers_twostep.d16_unorm_s8_uint_1x33,Fail
dEQP-VK.api.image_clearing.core.clear_depth_stencil_image.2d.remaining_array_layers_twostep.d32_sfloat_s8_uint_separate_layouts_stencil_1x33,Fail
dEQP-VK.api.image_clearing.dedicated_allocation.clear_depth_stencil_image.2d.multiple_layers.d16_unorm_s8_uint_1x33_multiple_subresourcerange,Fail
dEQP-VK.api.image_clearing.dedicated_allocation.clear_depth_stencil_image.2d.multiple_layers.d32_sfloat_s8_uint_1x33_multiple_subresourcerange,Fail
dEQP-VK.api.image_clearing.dedicated_allocation.clear_depth_stencil_image.2d.remaining_array_layers.d16_unorm_s8_uint_1x33_multiple_subresourcerange,Fail
dEQP-VK.api.image_clearing.dedicated_allocation.clear_depth_stencil_image.2d.remaining_array_layers.d32_sfloat_s8_uint_1x33_multiple_subresourcerange,Fail
dEQP-VK.api.image_clearing.dedicated_allocation.clear_depth_stencil_image.2d.single_layer.d16_unorm_s8_uint_1x33_multiple_subresourcerange,Fail
dEQP-VK.api.image_clearing.dedicated_allocation.clear_depth_stencil_image.2d.single_layer.d32_sfloat_s8_uint_1x33_multiple_subresourcerange,Fail
dEQP-VK.binding_model.descriptor_buffer.multiple.compute_comp_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.compute_comp_buffers32_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_ahit_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_chit_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_comp_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_frag_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_geom_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_miss_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_rgen_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_sect_buffers8_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tesc_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tese_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_vert_buffers1_sets3_imm_samplers,Crash
dEQP-VK.dynamic_rendering.complete_secondary_cmd_buff.suballocation.unused_clear_attachments.colorunused_colorunused_colorused_colorused_stencilonly_d32s8_used,Fail
dEQP-VK.dynamic_rendering.complete_secondary_cmd_buff.suballocation.unused_clear_attachments.colorused_colorunused_colorused_colorused_stencilonly_d32s8_used,Fail
dEQP-VK.dynamic_rendering.partial_secondary_cmd_buff.suballocation.unused_clear_attachments.colorunused_colorused_colorused_colorused_stencilonly_d32s8_used,Fail
dEQP-VK.dynamic_rendering.partial_secondary_cmd_buff.suballocation.unused_clear_attachments.colorused_colorused_colorused_colorused_stencilonly_d32s8_used,Fail
dEQP-VK.dynamic_rendering.partial_secondary_cmd_buff.suballocation.unused_clear_attachments.colorused_stencilonly_d32s8_used,Fail
dEQP-VK.dynamic_rendering.primary_cmd_buff.random.seed52_geometry,Fail
dEQP-VK.dynamic_rendering.primary_cmd_buff.random.seed8_tessellation,Fail
dEQP-VK.dynamic_rendering.primary_cmd_buff.suballocation.unused_clear_attachments.colorunused_colorused_colorunused_colorused_stencilonly_d32s8_used,Fail
dEQP-VK.dynamic_rendering.primary_cmd_buff.suballocation.unused_clear_attachments.colorused_colorused_colorunused_colorused_stencilonly_d32s8_used,Fail
dEQP-VK.dynamic_rendering.primary_cmd_buff.suballocation.unused_clear_attachments.stencilonly_d32s8_used,Fail
dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_16_64_6.samples_2.d16_unorm.depth_max,Fail
dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_16_64_6.samples_2.d32_sfloat.depth_max,Fail
dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_16_64_6.samples_4.d16_unorm.depth_min,Fail
dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_16_64_6.samples_4.d32_sfloat.depth_min,Fail
dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_16_64_6.samples_8.d16_unorm.depth_average,Fail
dEQP-VK.renderpass2.depth_stencil_resolve.image_2d_16_64_6.samples_8.d32_sfloat.depth_average,Fail
dEQP-VK.texture.mipmap.2d.image_view_min_lod.base_level.nearest_nearest_integer_texel_coord,Fail
dEQP-VK.texture.mipmap.3d.image_view_min_lod.base_level.nearest_linear_integer_texel_coord,Fail

View File

@@ -159,4 +159,8 @@ dEQP-VK.transform_feedback.simple.query_triangle_strip_with_adjacency_0_6_64bits
dEQP-VK.ycbcr.conversion.g16_b16_r16_3plane_420_unorm.color_conversion.ycbcr_identity_itu_full_tiling_optimal_cosited_binding_15
# Causes OOM: https://gitlab.freedesktop.org/mesa/mesa/-/issues/7534
dEQP-VK.api.buffer.basic.max_size_sparse
dEQP-VK.api.buffer.basic.max_size_sparse
# Timeouts in VK-GL-CTS 1.3.5.0
dEQP-VK.memory.mapping.suballocation.full.variable.implicit_unmap
dEQP-VK.api.device_init.create_instance_device_intentional_alloc_fail.basic

View File

@@ -4,55 +4,6 @@ dEQP-VK.ray_tracing_pipeline.acceleration_structures.copy_within_pipeline.gpu.st
dEQP-VK.ray_tracing_pipeline.acceleration_structures.copy_within_pipeline.gpu.stage_as_copy_bit,Crash
# Test bugs with GPL (all of them should be fixed with recent CTS).
dEQP-VK.fragment_shading_rate.dynamic_rendering.primary_cmd_buff.fast_linked_library.misc_tests.sample_mask_test,Fail
dEQP-VK.fragment_shading_rate.dynamic_rendering.primary_cmd_buff.pipeline_library.misc_tests.sample_mask_test,Fail
dEQP-VK.fragment_shading_rate.renderpass2.fast_linked_library.misc_tests.sample_mask_test,Fail
dEQP-VK.fragment_shading_rate.renderpass2.pipeline_library.misc_tests.sample_mask_test,Fail
dEQP-VK.pipeline.fast_linked_library.creation_feedback.graphics_tests.vertex_stage_fragment_stage,Fail
dEQP-VK.pipeline.fast_linked_library.creation_feedback.graphics_tests.vertex_stage_fragment_stage_delayed_destroy,Fail
dEQP-VK.pipeline.fast_linked_library.creation_feedback.graphics_tests.vertex_stage_fragment_stage_no_cache,Fail
dEQP-VK.pipeline.fast_linked_library.creation_feedback.graphics_tests.vertex_stage_geometry_stage_fragment_stage,Fail
dEQP-VK.pipeline.fast_linked_library.creation_feedback.graphics_tests.vertex_stage_geometry_stage_fragment_stage_delayed_destroy,Fail
dEQP-VK.pipeline.fast_linked_library.creation_feedback.graphics_tests.vertex_stage_geometry_stage_fragment_stage_no_cache,Fail
dEQP-VK.pipeline.fast_linked_library.creation_feedback.graphics_tests.vertex_stage_tessellation_control_stage_tessellation_evaluation_stage_fragment_stage,Fail
dEQP-VK.pipeline.fast_linked_library.creation_feedback.graphics_tests.vertex_stage_tessellation_control_stage_tessellation_evaluation_stage_fragment_stage_delayed_destroy,Fail
dEQP-VK.pipeline.fast_linked_library.creation_feedback.graphics_tests.vertex_stage_tessellation_control_stage_tessellation_evaluation_stage_fragment_stage_no_cache,Fail
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls1_combined_image_sampler,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls1_input_attachment,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls1_sampled_image,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls1_sampler,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls1_storage_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls1_storage_image,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls1_storage_texel_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls1_uniform_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls1_uniform_texel_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls2_combined_image_sampler,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls2_input_attachment,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls2_sampled_image,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls2_sampler,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls2_storage_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls2_storage_image,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls2_storage_texel_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls2_uniform_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls2_uniform_texel_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding1_numcalls2_combined_image_sampler,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding1_numcalls2_input_attachment,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding1_numcalls2_sampled_image,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding1_numcalls2_sampler,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding1_numcalls2_storage_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding1_numcalls2_storage_image,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding1_numcalls2_storage_texel_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding1_numcalls2_uniform_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding1_numcalls2_uniform_texel_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding3_numcalls2_combined_image_sampler,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding3_numcalls2_input_attachment,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding3_numcalls2_sampled_image,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding3_numcalls2_sampler,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding3_numcalls2_storage_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding3_numcalls2_storage_image,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding3_numcalls2_storage_texel_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding3_numcalls2_uniform_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding3_numcalls2_uniform_texel_buffer,Crash
dEQP-VK.pipeline.pipeline_library.creation_feedback.graphics_tests.vertex_stage_fragment_stage,Crash
dEQP-VK.pipeline.pipeline_library.creation_feedback.graphics_tests.vertex_stage_fragment_stage_delayed_destroy,Crash
dEQP-VK.pipeline.pipeline_library.creation_feedback.graphics_tests.vertex_stage_fragment_stage_no_cache,Crash
@@ -62,3 +13,105 @@ dEQP-VK.pipeline.pipeline_library.creation_feedback.graphics_tests.vertex_stage_
dEQP-VK.pipeline.pipeline_library.creation_feedback.graphics_tests.vertex_stage_tessellation_control_stage_tessellation_evaluation_stage_fragment_stage,Crash
dEQP-VK.pipeline.pipeline_library.creation_feedback.graphics_tests.vertex_stage_tessellation_control_stage_tessellation_evaluation_stage_fragment_stage_delayed_destroy,Crash
dEQP-VK.pipeline.pipeline_library.creation_feedback.graphics_tests.vertex_stage_tessellation_control_stage_tessellation_evaluation_stage_fragment_stage_no_cache,Crash
# New CTS failures in 1.3.5.0
dEQP-VK.binding_model.descriptor_buffer.multiple.compute_comp_buffers16_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.compute_comp_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.compute_comp_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.compute_comp_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.compute_comp_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.compute_comp_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.compute_comp_buffers32_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.compute_comp_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.compute_comp_buffers8_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_ahit_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_ahit_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_ahit_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_ahit_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_ahit_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_ahit_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_ahit_buffers8_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_call_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_call_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_call_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_call_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_call_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_call_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_call_buffers8_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_chit_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_chit_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_chit_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_chit_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_chit_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_chit_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_chit_buffers8_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_comp_buffers16_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_comp_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_comp_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_comp_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_comp_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_comp_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_comp_buffers32_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_comp_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_comp_buffers8_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_frag_buffers16_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_frag_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_frag_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_frag_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_frag_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_frag_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_frag_buffers32_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_frag_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_frag_buffers8_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_geom_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_geom_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_geom_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_geom_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_geom_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_geom_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_geom_buffers8_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_miss_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_miss_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_miss_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_miss_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_miss_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_miss_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_miss_buffers8_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_rgen_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_rgen_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_rgen_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_rgen_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_rgen_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_rgen_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_rgen_buffers8_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_sect_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_sect_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_sect_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_sect_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_sect_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_sect_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_sect_buffers8_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tesc_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tesc_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tesc_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tesc_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tesc_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tesc_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tesc_buffers8_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tese_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tese_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tese_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tese_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tese_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tese_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tese_buffers8_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_vert_buffers16_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_vert_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_vert_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_vert_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_vert_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_vert_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_vert_buffers32_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_vert_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_vert_buffers8_sets1,Crash
dEQP-VK.binding_model.ics_miss_buffers8_sets1,Crash

View File

@@ -6,6 +6,8 @@ dEQP-VK.dynamic_rendering.basic.*
# runs, let's mark this test as a flake until it gets fixed.
#
# See: https://gitlab.freedesktop.org/mesa/mesa/-/issues/7220
dEQP-VK.draw.renderpass.linear_interpolation.no_offset_2_samples,Fail
dEQP-VK.draw.renderpass.linear_interpolation.no_offset_4_samples,Fail
dEQP-VK.draw.renderpass.linear_interpolation.no_offset_8_samples
dEQP-VK.pipeline.monolithic.image.suballocation.sampling_type.separate.view_type.2d_array.format.r4g4b4a4_unorm_pack16.count_4.size.32x16_array_of_6
@@ -14,3 +16,5 @@ dEQP-VK.pipeline.monolithic.image.suballocation.sampling_type.separate.view_type
# Steam Deck 2 at Martin Roukala (mupuf)'s farm. Investigation is under way.
dEQP-VK.query_pool.statistics_query.geometry_shader_primitives.*
dEQP-VK.query_pool.statistics_query.host_query_reset.geometry_shader_primitives.*
dEQP-VK.draw.dynamic_rendering.complete_secondary_cmd_buff.linear_interpolation.offset_max_2_samples

View File

@@ -32,55 +32,6 @@ dEQP-VK.api.copy_and_blit.dedicated_allocation.resolve_image.diff_layout_copy_be
dEQP-VK.api.copy_and_blit.dedicated_allocation.resolve_image.diff_layout_copy_before_resolving.8_bit_transfer_src_optimal_general_bind_offset,Fail
# Test bugs with GPL (all of them should be fixed with recent CTS).
dEQP-VK.fragment_shading_rate.dynamic_rendering.primary_cmd_buff.fast_linked_library.misc_tests.sample_mask_test,Fail
dEQP-VK.fragment_shading_rate.dynamic_rendering.primary_cmd_buff.pipeline_library.misc_tests.sample_mask_test,Fail
dEQP-VK.fragment_shading_rate.renderpass2.fast_linked_library.misc_tests.sample_mask_test,Fail
dEQP-VK.fragment_shading_rate.renderpass2.pipeline_library.misc_tests.sample_mask_test,Fail
dEQP-VK.pipeline.fast_linked_library.creation_feedback.graphics_tests.vertex_stage_fragment_stage,Fail
dEQP-VK.pipeline.fast_linked_library.creation_feedback.graphics_tests.vertex_stage_fragment_stage_delayed_destroy,Fail
dEQP-VK.pipeline.fast_linked_library.creation_feedback.graphics_tests.vertex_stage_fragment_stage_no_cache,Fail
dEQP-VK.pipeline.fast_linked_library.creation_feedback.graphics_tests.vertex_stage_geometry_stage_fragment_stage,Fail
dEQP-VK.pipeline.fast_linked_library.creation_feedback.graphics_tests.vertex_stage_geometry_stage_fragment_stage_delayed_destroy,Fail
dEQP-VK.pipeline.fast_linked_library.creation_feedback.graphics_tests.vertex_stage_geometry_stage_fragment_stage_no_cache,Fail
dEQP-VK.pipeline.fast_linked_library.creation_feedback.graphics_tests.vertex_stage_tessellation_control_stage_tessellation_evaluation_stage_fragment_stage,Fail
dEQP-VK.pipeline.fast_linked_library.creation_feedback.graphics_tests.vertex_stage_tessellation_control_stage_tessellation_evaluation_stage_fragment_stage_delayed_destroy,Fail
dEQP-VK.pipeline.fast_linked_library.creation_feedback.graphics_tests.vertex_stage_tessellation_control_stage_tessellation_evaluation_stage_fragment_stage_no_cache,Fail
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls1_combined_image_sampler,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls1_input_attachment,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls1_sampled_image,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls1_sampler,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls1_storage_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls1_storage_image,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls1_storage_texel_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls1_uniform_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls1_uniform_texel_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls2_combined_image_sampler,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls2_input_attachment,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls2_sampled_image,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls2_sampler,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls2_storage_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls2_storage_image,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls2_storage_texel_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls2_uniform_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding0_numcalls2_uniform_texel_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding1_numcalls2_combined_image_sampler,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding1_numcalls2_input_attachment,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding1_numcalls2_sampled_image,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding1_numcalls2_sampler,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding1_numcalls2_storage_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding1_numcalls2_storage_image,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding1_numcalls2_storage_texel_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding1_numcalls2_uniform_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding1_numcalls2_uniform_texel_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding3_numcalls2_combined_image_sampler,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding3_numcalls2_input_attachment,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding3_numcalls2_sampled_image,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding3_numcalls2_sampler,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding3_numcalls2_storage_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding3_numcalls2_storage_image,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding3_numcalls2_storage_texel_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding3_numcalls2_uniform_buffer,Crash
dEQP-VK.pipeline.fast_linked_library.push_descriptor.graphics.binding3_numcalls2_uniform_texel_buffer,Crash
dEQP-VK.pipeline.pipeline_library.creation_feedback.graphics_tests.vertex_stage_fragment_stage,Crash
dEQP-VK.pipeline.pipeline_library.creation_feedback.graphics_tests.vertex_stage_fragment_stage_delayed_destroy,Crash
dEQP-VK.pipeline.pipeline_library.creation_feedback.graphics_tests.vertex_stage_fragment_stage_no_cache,Crash
@@ -90,3 +41,114 @@ dEQP-VK.pipeline.pipeline_library.creation_feedback.graphics_tests.vertex_stage_
dEQP-VK.pipeline.pipeline_library.creation_feedback.graphics_tests.vertex_stage_tessellation_control_stage_tessellation_evaluation_stage_fragment_stage,Crash
dEQP-VK.pipeline.pipeline_library.creation_feedback.graphics_tests.vertex_stage_tessellation_control_stage_tessellation_evaluation_stage_fragment_stage_delayed_destroy,Crash
dEQP-VK.pipeline.pipeline_library.creation_feedback.graphics_tests.vertex_stage_tessellation_control_stage_tessellation_evaluation_stage_fragment_stage_no_cache,Crash
# New CTS failures in 1.3.5.0
dEQP-VK.binding_model.descriptor_buffer.multiple.compute_comp_buffers16_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.compute_comp_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.compute_comp_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.compute_comp_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.compute_comp_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.compute_comp_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.compute_comp_buffers32_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.compute_comp_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.compute_comp_buffers8_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_ahit_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_ahit_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_ahit_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_ahit_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_ahit_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_ahit_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_ahit_buffers8_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_call_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_call_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_call_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_call_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_call_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_call_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_call_buffers8_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_chit_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_chit_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_chit_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_chit_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_chit_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_chit_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_chit_buffers8_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_comp_buffers16_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_comp_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_comp_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_comp_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_comp_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_comp_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_comp_buffers32_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_comp_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_comp_buffers8_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_frag_buffers16_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_frag_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_frag_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_frag_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_frag_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_frag_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_frag_buffers32_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_frag_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_frag_buffers8_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_geom_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_geom_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_geom_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_geom_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_geom_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_geom_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_geom_buffers8_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_miss_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_miss_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_miss_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_miss_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_miss_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_miss_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_miss_buffers8_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_rgen_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_rgen_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_rgen_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_rgen_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_rgen_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_rgen_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_rgen_buffers8_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_sect_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_sect_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_sect_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_sect_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_sect_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_sect_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_sect_buffers8_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tesc_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tesc_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tesc_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tesc_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tesc_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tesc_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tesc_buffers8_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tese_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tese_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tese_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tese_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tese_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tese_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tese_buffers8_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_vert_buffers16_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_vert_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_vert_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_vert_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_vert_buffers2_sets4,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_vert_buffers2_sets4_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_vert_buffers32_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_vert_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_vert_buffers8_sets1,Crash
dEQP-VK.dynamic_rendering.primary_cmd_buff.random.seed3_tessellation,Fail
dEQP-VK.dynamic_rendering.primary_cmd_buff.random.seed46_geometry,Fail
dEQP-VK.dynamic_rendering.primary_cmd_buff.random.seed49_tessellation,Fail
dEQP-VK.dynamic_rendering.primary_cmd_buff.random.seed50_geometry,Fail
dEQP-VK.dynamic_rendering.primary_cmd_buff.random.seed52_geometry,Fail
dEQP-VK.dynamic_rendering.primary_cmd_buff.random.seed59_geometry,Fail
dEQP-VK.dynamic_rendering.primary_cmd_buff.random.seed65_tessellation,Fail
dEQP-VK.dynamic_rendering.primary_cmd_buff.random.seed6_geometry,Fail
dEQP-VK.dynamic_rendering.primary_cmd_buff.random.seed81_tessellation,Fail
dEQP-VK.dynamic_rendering.primary_cmd_buff.random.seed8_tessellation,Fail

View File

@@ -1 +1,3 @@
dEQP-VK.dynamic_rendering.basic.*
dEQP-VK.dynamic_rendering.primary.*
dEQP-VK.pipeline.fast_linked_library.multisample_interpolation.sample_interpolation_consistency.component_1.128_128_1.samples_8

View File

@@ -357,13 +357,42 @@ spec@!opengl 2.0@max-samplers border,Fail
wayland-dEQP-EGL.functional.wide_color.window_888_colorspace_default,Fail
wayland-dEQP-EGL.functional.wide_color.window_fp16_default_colorspace,Fail
# https://gitlab.khronos.org/Tracker/vk-gl-cts/-/issues/3759
dEQP-VK.pipeline.monolithic.color_write_enable_maxa.cwe_after_bind.attachments4_more0,Crash
# https://gitlab.khronos.org/Tracker/vk-gl-cts/-/issues/3913
dEQP-VK.compute.workgroup_memory_explicit_layout.copy_memory.two_invocations,Crash
dEQP-VK.compute.workgroup_memory_explicit_layout.zero_ext.block,Crash
dEQP-VK.compute.workgroup_memory_explicit_layout.zero_ext.other_block,Crash
dEQP-VK.compute.workgroup_memory_explicit_layout.zero_ext.block_with_offset,Crash
spec@!opengl 1.1@line-smooth-stipple,Fail
# Works when run individually, but fail consistently on the CI
dEQP-GLES3.functional.texture.specification.teximage2d_pbo.rgba32i_cube,Fail
# New CTS failures in 1.3.5.0
dEQP-VK.api.buffer_view.access.uniform_texel_buffer.b8g8r8a8_unorm,Fail
dEQP-VK.query_pool.occlusion_query.get_results_conservative_size_32_wait_query_without_availability_draw_points_clear_color,Fail
dEQP-VK.query_pool.occlusion_query.get_results_conservative_size_32_wait_query_without_availability_draw_points_clear_depth,Fail
dEQP-VK.query_pool.occlusion_query.get_results_conservative_size_32_wait_query_without_availability_draw_triangles_clear_color,Fail
dEQP-VK.query_pool.occlusion_query.get_results_conservative_size_32_wait_query_without_availability_draw_triangles_clear_depth,Fail
dEQP-VK.query_pool.occlusion_query.get_results_conservative_size_32_wait_queue_without_availability_draw_points_clear_color,Fail
dEQP-VK.query_pool.occlusion_query.get_results_conservative_size_32_wait_queue_without_availability_draw_points_clear_depth,Fail
dEQP-VK.query_pool.occlusion_query.get_results_conservative_size_32_wait_queue_without_availability_draw_triangles_clear_color,Fail
dEQP-VK.query_pool.occlusion_query.get_results_conservative_size_32_wait_queue_without_availability_draw_triangles_clear_depth,Fail
dEQP-VK.query_pool.occlusion_query.get_results_conservative_size_64_wait_query_without_availability_draw_points_clear_color,Fail
dEQP-VK.query_pool.occlusion_query.get_results_conservative_size_64_wait_query_without_availability_draw_points_clear_depth,Fail
dEQP-VK.query_pool.occlusion_query.get_results_conservative_size_64_wait_query_without_availability_draw_triangles_clear_color,Fail
dEQP-VK.query_pool.occlusion_query.get_results_conservative_size_64_wait_query_without_availability_draw_triangles_clear_depth,Fail
dEQP-VK.query_pool.occlusion_query.get_results_conservative_size_64_wait_queue_without_availability_draw_points_clear_color,Fail
dEQP-VK.query_pool.occlusion_query.get_results_conservative_size_64_wait_queue_without_availability_draw_points_clear_depth,Fail
dEQP-VK.query_pool.occlusion_query.get_results_conservative_size_64_wait_queue_without_availability_draw_triangles_clear_color,Fail
dEQP-VK.query_pool.occlusion_query.get_results_conservative_size_64_wait_queue_without_availability_draw_triangles_clear_depth,Fail
dEQP-VK.query_pool.occlusion_query.get_results_precise_size_32_wait_query_without_availability_draw_points_clear_color,Fail
dEQP-VK.query_pool.occlusion_query.get_results_precise_size_32_wait_query_without_availability_draw_points_clear_depth,Fail
dEQP-VK.query_pool.occlusion_query.get_results_precise_size_32_wait_query_without_availability_draw_triangles_clear_color,Fail
dEQP-VK.query_pool.occlusion_query.get_results_precise_size_32_wait_query_without_availability_draw_triangles_clear_depth,Fail
dEQP-VK.query_pool.occlusion_query.get_results_precise_size_32_wait_queue_without_availability_draw_points_clear_color,Fail
dEQP-VK.query_pool.occlusion_query.get_results_precise_size_32_wait_queue_without_availability_draw_points_clear_depth,Fail
dEQP-VK.query_pool.occlusion_query.get_results_precise_size_32_wait_queue_without_availability_draw_triangles_clear_color,Fail
dEQP-VK.query_pool.occlusion_query.get_results_precise_size_32_wait_queue_without_availability_draw_triangles_clear_depth,Fail
dEQP-VK.query_pool.occlusion_query.get_results_precise_size_64_wait_query_without_availability_draw_points_clear_color,Fail
dEQP-VK.query_pool.occlusion_query.get_results_precise_size_64_wait_query_without_availability_draw_points_clear_depth,Fail
dEQP-VK.query_pool.occlusion_query.get_results_precise_size_64_wait_query_without_availability_draw_triangles_clear_color,Fail
dEQP-VK.query_pool.occlusion_query.get_results_precise_size_64_wait_query_without_availability_draw_triangles_clear_depth,Fail
dEQP-VK.query_pool.occlusion_query.get_results_precise_size_64_wait_queue_without_availability_draw_points_clear_color,Fail
dEQP-VK.query_pool.occlusion_query.get_results_precise_size_64_wait_queue_without_availability_draw_points_clear_depth,Fail
dEQP-VK.query_pool.occlusion_query.get_results_precise_size_64_wait_queue_without_availability_draw_triangles_clear_color,Fail
dEQP-VK.query_pool.occlusion_query.get_results_precise_size_64_wait_queue_without_availability_draw_triangles_clear_depth,Fail

View File

@@ -89,8 +89,6 @@ dEQP-GLES3.functional.shaders.derivate.fwidth.nicest.fbo_float.float_highp,Fail
dEQP-GLES3.functional.shaders.derivate.fwidth.nicest.fbo_float.vec2_highp,Fail
dEQP-GLES3.functional.shaders.derivate.fwidth.nicest.fbo_float.vec3_highp,Fail
dEQP-GLES3.functional.shaders.derivate.fwidth.nicest.fbo_float.vec4_highp,Fail
dEQP-GLES3.functional.shaders.texture_functions.textureprojlodoffset.sampler2dshadow_vertex,Fail
dEQP-GLES3.functional.shaders.texture_functions.textureprojoffset.sampler2dshadow_vertex,Fail
dEQP-GLES3.functional.state_query.rbo.renderbuffer_component_size_color,Fail
dEQP-GLES3.functional.texture.mipmap.cube.max_level.linear_nearest,Fail
dEQP-GLES3.functional.transform_feedback.array_element.interleaved.triangles.highp_mat2x4,Fail

View File

@@ -13,3 +13,35 @@ glx@glx-swap-event_interval
glx@glx-swap-event_async
glx@glx_arb_sync_control@swapbuffersmsc-divisor-zero
glx@glx_arb_sync_control@waitformsc
dEQP-GLES3.functional.occlusion_query.all_occluders
dEQP-GLES3.functional.occlusion_query.conservative_depth_clear_stencil_write
dEQP-GLES3.functional.occlusion_query.conservative_depth_clear_stencil_write_stencil_clear
dEQP-GLES3.functional.occlusion_query.conservative_depth_write
dEQP-GLES3.functional.occlusion_query.conservative_depth_write_depth_clear
dEQP-GLES3.functional.occlusion_query.conservative_depth_write_depth_clear_stencil_write
dEQP-GLES3.functional.occlusion_query.conservative_depth_write_stencil_clear
dEQP-GLES3.functional.occlusion_query.conservative_depth_write_stencil_write
dEQP-GLES3.functional.occlusion_query.conservative_depth_write_stencil_write_stencil_clear
dEQP-GLES3.functional.occlusion_query.conservative_scissor_depth_clear_stencil_write
dEQP-GLES3.functional.occlusion_query.conservative_scissor_depth_write
dEQP-GLES3.functional.occlusion_query.conservative_scissor_depth_write_depth_clear
dEQP-GLES3.functional.occlusion_query.conservative_scissor_depth_write_depth_clear_stencil_clear
dEQP-GLES3.functional.occlusion_query.conservative_scissor_depth_write_stencil_write
dEQP-GLES3.functional.occlusion_query.conservative_scissor_depth_write_stencil_write_stencil_clear
dEQP-GLES3.functional.occlusion_query.conservative_stencil_write
dEQP-GLES3.functional.occlusion_query.conservative_stencil_write_stencil_clear
dEQP-GLES3.functional.occlusion_query.depth_clear
dEQP-GLES3.functional.occlusion_query.depth_write_depth_clear_stencil_write_stencil_clear
dEQP-GLES3.functional.occlusion_query.depth_write_stencil_clear
dEQP-GLES3.functional.occlusion_query.depth_write_stencil_write_stencil_clear
dEQP-GLES3.functional.occlusion_query.scissor
dEQP-GLES3.functional.occlusion_query.scissor_depth_clear_stencil_clear
dEQP-GLES3.functional.occlusion_query.scissor_depth_clear_stencil_write_stencil_clear
dEQP-GLES3.functional.occlusion_query.scissor_depth_write_depth_clear_stencil_clear
dEQP-GLES3.functional.occlusion_query.scissor_depth_write_stencil_write_stencil_clear
dEQP-GLES3.functional.occlusion_query.scissor_stencil_write
dEQP-GLES3.functional.occlusion_query.stencil_clear
dEQP-GLES3.functional.occlusion_query.stencil_write
dEQP-GLES3.functional.occlusion_query.stencil_write_stencil_clear
dEQP-GLES3.functional.vertex_arrays.single_attribute.normalize.int2_10_10_10.components4_quads256

View File

@@ -2,14 +2,10 @@
KHR-GL45.transform_feedback.draw_xfb_stream_instanced_test,Fail
KHR-GL45.gpu_shader_fp64.fp64.max_uniform_components,Fail
KHR-GL45.gpu_shader_fp64.builtin.mod_dvec2,Fail
KHR-GL45.gpu_shader_fp64.builtin.mod_dvec3,Fail
KHR-GL45.gpu_shader_fp64.builtin.mod_dvec4,Fail
KHR-GL45.shader_subroutine.control_flow_and_returned_subroutine_values_used_as_subroutine_input,Fail
KHR-GL45.shader_image_load_store.basic-allFormats-store,Fail
KHR-GL45.shader_image_load_store.basic-allTargets-store,Fail
KHR-GL45.shading_language_420pack.binding_images,Fail
KHR-GL45.buffer_storage.map_persistent_draw,Fail
# "Invalid value returned: expected:[1, 1, 1, 1] retrieved: [0, 0, 0, 0
# Invalid rendering result at esextcTessellationShaderBarrier.cpp:504"
@@ -32,7 +28,6 @@ KHR-GL45.direct_state_access.renderbuffers_storage_multisample,Fail
KHR-GL45.multi_bind.dispatch_bind_image_textures,Fail
# Fails when TU_DEBUG=forcebin is set
gmem-dEQP-VK.spirv_assembly.instruction.graphics.variable_pointers.graphics.writes_two_buffers_geom,Fail
gmem-dEQP-VK.spirv_assembly.instruction.graphics.variable_pointers.graphics.writes_two_buffers_vert,Fail
glx@glx_arb_create_context_es2_profile@invalid opengl es version,Fail
@@ -365,28 +360,10 @@ spec@arb_query_buffer_object@qbo@query-GL_TIME_ELAPSED-SYNC_CPU_READ_AFTER_CACHE
# https://gitlab.khronos.org/Tracker/vk-gl-cts/-/issues/3759
# deqp-vk: ../src/freedreno/vulkan/tu_pipeline.c:3894: tu_pipeline_builder_init_graphics: Assertion `subpass->color_count == 0 || !create_info->pColorBlendState || subpass->color_count == create_info->pColorBlendState->attachmentCount' failed
dEQP-VK.pipeline.monolithic.color_write_enable_maxa.cwe_after_bind.attachments4_more0,Crash
dEQP-VK.pipeline.monolithic.color_write_enable_maxa.cwe_after_bind.attachments4_more1,Crash
dEQP-VK.pipeline.monolithic.color_write_enable_maxa.cwe_after_bind.attachments4_more3,Crash
dEQP-VK.pipeline.monolithic.color_write_enable_maxa.cwe_after_bind.attachments5_more0,Crash
dEQP-VK.pipeline.monolithic.color_write_enable_maxa.cwe_after_bind.attachments5_more1,Crash
dEQP-VK.pipeline.monolithic.color_write_enable_maxa.cwe_after_bind.attachments5_more3,Crash
dEQP-VK.pipeline.monolithic.color_write_enable_maxa.cwe_after_bind.attachments6_more0,Crash
dEQP-VK.pipeline.monolithic.color_write_enable_maxa.cwe_after_bind.attachments6_more1,Crash
dEQP-VK.pipeline.pipeline_library.color_write_enable_maxa.cwe_after_bind.attachments4_more0,Crash
dEQP-VK.pipeline.pipeline_library.color_write_enable_maxa.cwe_after_bind.attachments4_more1,Crash
dEQP-VK.pipeline.pipeline_library.color_write_enable_maxa.cwe_after_bind.attachments4_more3,Crash
dEQP-VK.pipeline.pipeline_library.color_write_enable_maxa.cwe_after_bind.attachments5_more0,Crash
dEQP-VK.pipeline.pipeline_library.color_write_enable_maxa.cwe_after_bind.attachments5_more1,Crash
dEQP-VK.pipeline.pipeline_library.color_write_enable_maxa.cwe_after_bind.attachments5_more3,Crash
dEQP-VK.pipeline.pipeline_library.color_write_enable_maxa.cwe_after_bind.attachments6_more0,Crash
dEQP-VK.pipeline.pipeline_library.color_write_enable_maxa.cwe_after_bind.attachments6_more1,Crash
dEQP-VK.pipeline.fast_linked_library.color_write_enable_maxa.cwe_after_bind.attachments4_more0,Crash
dEQP-VK.pipeline.fast_linked_library.color_write_enable_maxa.cwe_after_bind.attachments4_more1,Crash
dEQP-VK.pipeline.fast_linked_library.color_write_enable_maxa.cwe_after_bind.attachments4_more3,Crash
dEQP-VK.pipeline.fast_linked_library.color_write_enable_maxa.cwe_after_bind.attachments5_more0,Crash
dEQP-VK.pipeline.fast_linked_library.color_write_enable_maxa.cwe_after_bind.attachments5_more1,Crash
dEQP-VK.pipeline.fast_linked_library.color_write_enable_maxa.cwe_after_bind.attachments5_more3,Crash
dEQP-VK.pipeline.fast_linked_library.color_write_enable_maxa.cwe_after_bind.attachments6_more0,Crash
dEQP-VK.pipeline.fast_linked_library.color_write_enable_maxa.cwe_after_bind.attachments6_more1,Crash
gmem-dEQP-VK.pipeline.monolithic.color_write_enable_maxa.cwe_after_bind.attachments4_more0,Crash
@@ -400,14 +377,12 @@ gmem-dEQP-VK.pipeline.monolithic.color_write_enable_maxa.cwe_after_bind.attachme
gmem-dEQP-VK.pipeline.pipeline_library.color_write_enable_maxa.cwe_after_bind.attachments4_more0,Crash
gmem-dEQP-VK.pipeline.pipeline_library.color_write_enable_maxa.cwe_after_bind.attachments4_more1,Crash
gmem-dEQP-VK.pipeline.pipeline_library.color_write_enable_maxa.cwe_after_bind.attachments4_more3,Crash
gmem-dEQP-VK.pipeline.pipeline_library.color_write_enable_maxa.cwe_after_bind.attachments5_more0,Crash
gmem-dEQP-VK.pipeline.pipeline_library.color_write_enable_maxa.cwe_after_bind.attachments5_more1,Crash
gmem-dEQP-VK.pipeline.pipeline_library.color_write_enable_maxa.cwe_after_bind.attachments5_more3,Crash
gmem-dEQP-VK.pipeline.pipeline_library.color_write_enable_maxa.cwe_after_bind.attachments6_more0,Crash
gmem-dEQP-VK.pipeline.pipeline_library.color_write_enable_maxa.cwe_after_bind.attachments6_more1,Crash
gmem-dEQP-VK.pipeline.fast_linked_library.color_write_enable_maxa.cwe_after_bind.attachments4_more0,Crash
gmem-dEQP-VK.pipeline.fast_linked_library.color_write_enable_maxa.cwe_after_bind.attachments4_more1,Crash
gmem-dEQP-VK.pipeline.fast_linked_library.color_write_enable_maxa.cwe_after_bind.attachments4_more3,Crash
gmem-dEQP-VK.pipeline.fast_linked_library.color_write_enable_maxa.cwe_after_bind.attachments5_more0,Crash
gmem-dEQP-VK.pipeline.fast_linked_library.color_write_enable_maxa.cwe_after_bind.attachments5_more1,Crash
gmem-dEQP-VK.pipeline.fast_linked_library.color_write_enable_maxa.cwe_after_bind.attachments5_more3,Crash
@@ -428,3 +403,120 @@ wayland-dEQP-EGL.functional.wide_color.window_fp16_default_colorspace,Fail
# SRGBReadWritePixels FAILED (7 errors)
# ../../tests/SRGBReadWritePixelsTest.cpp:214 Could not create sRGB surface context. [OpenGL]
SRGBReadWritePixels,Fail
# https://gitlab.khronos.org/Tracker/vk-gl-cts/-/issues/4144
dEQP-VK.pipeline.fast_linked_library.descriptor_limits.fragment_shader.input_attachments_3,Fail
dEQP-VK.pipeline.fast_linked_library.descriptor_limits.fragment_shader.input_attachments_4,Fail
dEQP-VK.pipeline.fast_linked_library.descriptor_limits.fragment_shader.input_attachments_5,Fail
dEQP-VK.pipeline.fast_linked_library.descriptor_limits.fragment_shader.input_attachments_6,Fail
dEQP-VK.pipeline.fast_linked_library.descriptor_limits.fragment_shader.input_attachments_7,Fail
dEQP-VK.pipeline.fast_linked_library.descriptor_limits.fragment_shader.input_attachments_8,Fail
gmem-dEQP-VK.pipeline.fast_linked_library.descriptor_limits.fragment_shader.input_attachments_8,Fail
# New CTS failures in 1.3.5.0
KHR-GL45.polygon_offset_clamp.PolygonOffsetClampMinMax,Fail
KHR-GL45.polygon_offset_clamp.PolygonOffsetClampZeroInfinity,Fail
dEQP-VK.api.buffer_marker.graphics.default_mem.bottom_of_pipe.memory_dep.buffer_copy_offset_24,Fail
dEQP-VK.api.buffer_marker.graphics.default_mem.bottom_of_pipe.memory_dep.dispatch_offset_24,Fail
dEQP-VK.api.buffer_marker.graphics.default_mem.bottom_of_pipe.memory_dep.draw_offset_24,Fail
dEQP-VK.api.buffer_marker.graphics.default_mem.bottom_of_pipe.overwrite.64_offset_24,Fail
dEQP-VK.api.buffer_marker.graphics.default_mem.bottom_of_pipe.sequential.64_offset_16,Fail
dEQP-VK.api.buffer_marker.graphics.default_mem.bottom_of_pipe.sequential.65536_offset_1024,Fail
dEQP-VK.api.buffer_marker.graphics.default_mem.top_of_pipe.memory_dep.buffer_copy_offset_24,Fail
dEQP-VK.api.buffer_marker.graphics.default_mem.top_of_pipe.memory_dep.dispatch_offset_24,Fail
dEQP-VK.api.buffer_marker.graphics.default_mem.top_of_pipe.memory_dep.draw_offset_24,Fail
dEQP-VK.api.buffer_marker.graphics.default_mem.top_of_pipe.overwrite.64_offset_24,Fail
dEQP-VK.api.buffer_marker.graphics.default_mem.top_of_pipe.sequential.64_offset_16,Fail
dEQP-VK.api.buffer_marker.graphics.default_mem.top_of_pipe.sequential.65536_offset_1024,Fail
dEQP-VK.binding_model.descriptor_buffer.multiple.compute_comp_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.compute_comp_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.compute_comp_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.compute_comp_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_ahit_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_ahit_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_ahit_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_ahit_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_call_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_call_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_call_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_call_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_chit_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_chit_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_chit_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_chit_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_comp_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_comp_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_comp_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_comp_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_frag_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_frag_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_frag_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_frag_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_geom_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_geom_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_geom_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_geom_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_miss_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_miss_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_miss_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_miss_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_rgen_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_rgen_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_rgen_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_rgen_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_sect_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_sect_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_sect_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_sect_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tesc_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tesc_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tesc_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tesc_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tese_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tese_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tese_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tese_buffers3_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_vert_buffers1_sets1,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_vert_buffers1_sets3,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_vert_buffers1_sets3_imm_samplers,Crash
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_vert_buffers3_sets1,Crash
dEQP-VK.pipeline.fast_linked_library.misc.interpolate_at_sample_no_sample_shading,Crash
dEQP-VK.pipeline.fast_linked_library.misc.unused_shader_stages,Crash
dEQP-VK.pipeline.fast_linked_library.misc.unused_shader_stages_include_geom,Crash
dEQP-VK.pipeline.fast_linked_library.misc.unused_shader_stages_include_tess,Crash
dEQP-VK.pipeline.fast_linked_library.misc.unused_shader_stages_include_tess_include_geom,Crash
dEQP-VK.pipeline.monolithic.descriptor_limits.fragment_shader.input_attachments_3,Fail
dEQP-VK.pipeline.monolithic.descriptor_limits.fragment_shader.input_attachments_4,Fail
dEQP-VK.pipeline.monolithic.descriptor_limits.fragment_shader.input_attachments_5,Fail
dEQP-VK.pipeline.monolithic.descriptor_limits.fragment_shader.input_attachments_6,Fail
dEQP-VK.pipeline.monolithic.descriptor_limits.fragment_shader.input_attachments_7,Fail
dEQP-VK.pipeline.monolithic.descriptor_limits.fragment_shader.input_attachments_8,Fail
dEQP-VK.pipeline.pipeline_library.descriptor_limits.fragment_shader.input_attachments_3,Fail
dEQP-VK.pipeline.pipeline_library.descriptor_limits.fragment_shader.input_attachments_4,Fail
dEQP-VK.pipeline.pipeline_library.descriptor_limits.fragment_shader.input_attachments_5,Fail
dEQP-VK.pipeline.pipeline_library.descriptor_limits.fragment_shader.input_attachments_6,Fail
dEQP-VK.pipeline.pipeline_library.descriptor_limits.fragment_shader.input_attachments_7,Fail
dEQP-VK.pipeline.pipeline_library.descriptor_limits.fragment_shader.input_attachments_8,Fail
dEQP-VK.pipeline.pipeline_library.misc.unused_shader_stages,Crash
dEQP-VK.pipeline.pipeline_library.misc.unused_shader_stages_include_geom,Crash
dEQP-VK.pipeline.pipeline_library.misc.unused_shader_stages_include_tess,Crash
dEQP-VK.pipeline.pipeline_library.misc.unused_shader_stages_include_tess_include_geom,Crash
dEQP-VK.transform_feedback.simple.lines_or_triangles_line_strip_1,Fail
dEQP-VK.transform_feedback.simple.lines_or_triangles_line_strip_3,Fail
dEQP-VK.transform_feedback.simple.lines_or_triangles_triangle_strip_1,Fail
dEQP-VK.transform_feedback.simple.lines_or_triangles_triangle_strip_3,Fail
gmem-dEQP-VK.api.buffer_marker.graphics.default_mem.top_of_pipe.memory_dep.dispatch_offset_24,Fail
gmem-dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_ahit_buffers1_sets1,Crash
gmem-dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_call_buffers1_sets3_imm_samplers,Crash
gmem-dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_chit_buffers1_sets1,Crash
gmem-dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_frag_buffers1_sets3_imm_samplers,Crash
gmem-dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_geom_buffers1_sets3_imm_samplers,Crash
gmem-dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_geom_buffers3_sets1,Crash
gmem-dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_miss_buffers1_sets3_imm_samplers,Crash
gmem-dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_tese_buffers3_sets1,Crash
gmem-dEQP-VK.pipeline.monolithic.descriptor_limits.fragment_shader.input_attachments_4,Fail
gmem-dEQP-VK.pipeline.pipeline_library.descriptor_limits.fragment_shader.input_attachments_6,Fail
gmem-dEQP-VK.transform_feedback.simple.lines_or_triangles_triangle_strip_1,Fail
gmem-dEQP-VK.transform_feedback.simple.lines_or_triangles_triangle_strip_3,Fail
nobin-dEQP-VK.transform_feedback.simple.lines_or_triangles_triangle_strip_1,Fail
nobin-dEQP-VK.transform_feedback.simple.lines_or_triangles_triangle_strip_3,Fail

View File

@@ -194,3 +194,7 @@ spec@ext_texture_lod_bias@lodbias
KHR-GL45.buffer_storage.map_persistent_dispatch
# recent flakes, first occurence 09-02-2023
KHR-GL45.buffer_storage.map_persistent_flush
# Flakes from CTS 1.3.5.0
dEQP-VK.image.queue_transfer.*
gmem-dEQP-VK.image.queue_transfer.*

View File

@@ -26,3 +26,6 @@ dEQP-VK.pipeline.fast_linked_library.color_write_enable_maxa.cwe_after_bind.atta
dEQP-VK.pipeline.fast_linked_library.color_write_enable_maxa.cwe_after_bind.attachments5_more3,Crash
dEQP-VK.pipeline.fast_linked_library.color_write_enable_maxa.cwe_after_bind.attachments6_more0,Crash
dEQP-VK.pipeline.fast_linked_library.color_write_enable_maxa.cwe_after_bind.attachments6_more1,Crash
# New CTS failures in 1.3.5.0
dEQP-VK.pipeline.monolithic.descriptor_limits.fragment_shader.input_attachments_6,Fail

View File

@@ -2,13 +2,9 @@
KHR-GL45.transform_feedback.draw_xfb_stream_instanced_test,Fail
KHR-GL45.gpu_shader_fp64.fp64.max_uniform_components,Fail
KHR-GL45.gpu_shader_fp64.builtin.mod_dvec2,Fail
KHR-GL45.gpu_shader_fp64.builtin.mod_dvec3,Fail
KHR-GL45.gpu_shader_fp64.builtin.mod_dvec4,Fail
KHR-GL45.shader_subroutine.control_flow_and_returned_subroutine_values_used_as_subroutine_input,Fail
KHR-GL45.shader_image_load_store.basic-allFormats-store,Fail
KHR-GL45.shading_language_420pack.binding_images,Fail
KHR-GL45.buffer_storage.map_persistent_draw,Fail
# "Invalid value returned: expected:[1, 1, 1, 1] retrieved: [0, 0, 0, 0
# Invalid rendering result at esextcTessellationShaderBarrier.cpp:504"
@@ -349,7 +345,6 @@ dEQP-VK.pipeline.monolithic.color_write_enable_maxa.cwe_after_bind.attachments6_
dEQP-VK.pipeline.monolithic.color_write_enable_maxa.cwe_after_bind.attachments6_more1,Crash
dEQP-VK.pipeline.pipeline_library.color_write_enable_maxa.cwe_after_bind.attachments4_more0,Crash
dEQP-VK.pipeline.pipeline_library.color_write_enable_maxa.cwe_after_bind.attachments4_more1,Crash
dEQP-VK.pipeline.pipeline_library.color_write_enable_maxa.cwe_after_bind.attachments4_more3,Crash
dEQP-VK.pipeline.pipeline_library.color_write_enable_maxa.cwe_after_bind.attachments5_more0,Crash
dEQP-VK.pipeline.pipeline_library.color_write_enable_maxa.cwe_after_bind.attachments5_more1,Crash
dEQP-VK.pipeline.pipeline_library.color_write_enable_maxa.cwe_after_bind.attachments5_more3,Crash
@@ -408,3 +403,44 @@ wayland-dEQP-EGL.functional.wide_color.window_fp16_default_colorspace,Fail
SRGBReadWritePixels,Fail
spec@!opengl 1.1@line-smooth-stipple,Fail
# New CTS failures in 1.3.5.0
KHR-GL45.polygon_offset_clamp.PolygonOffsetClampMinMax,Fail
KHR-GL45.polygon_offset_clamp.PolygonOffsetClampZeroInfinity,Fail
dEQP-VK.binding_model.descriptor_buffer.multiple.graphics_vert_buffers1_sets3,Crash
dEQP-VK.image.queue_transfer.2d.16x15x1.r8g8b8a8_srgb,Fail
dEQP-VK.image.queue_transfer.2d.16x15x16.a1r5g5b5_unorm_pack16,Fail
dEQP-VK.image.queue_transfer.2d.16x15x16.r5g5b5a1_unorm_pack16,Fail
dEQP-VK.image.queue_transfer.2d.16x15x16.r8g8_uint,Fail
dEQP-VK.image.queue_transfer.2d.4x3x1.r32g32_sfloat,Fail
dEQP-VK.image.queue_transfer.2d.4x3x1.r8_unorm,Fail
dEQP-VK.image.queue_transfer.2d.4x3x1.r8g8b8a8_uint,Fail
dEQP-VK.image.queue_transfer.2d.4x3x2.a8b8g8r8_sint_pack32,Fail
dEQP-VK.image.queue_transfer.2d.4x3x2.r16_sint,Fail
dEQP-VK.image.queue_transfer.2d.4x3x2.r5g6b5_unorm_pack16,Fail
dEQP-VK.image.queue_transfer.2d.64x31x1.b5g5r5a1_unorm_pack16,Fail
dEQP-VK.image.queue_transfer.2d.64x31x1.r16g16_sfloat,Fail
dEQP-VK.image.queue_transfer.2d.64x31x1.r8g8_srgb,Fail
dEQP-VK.image.queue_transfer.2d_array.16x15x1.a2b10g10r10_uint_pack32,Fail
dEQP-VK.image.queue_transfer.2d_array.16x15x1.r16_unorm,Fail
dEQP-VK.image.queue_transfer.2d_array.16x15x16.b8g8r8a8_uint,Fail
dEQP-VK.image.queue_transfer.2d_array.16x15x16.r5g5b5a1_unorm_pack16,Fail
dEQP-VK.image.queue_transfer.2d_array.4x3x1.a2r10g10b10_unorm_pack32,Fail
dEQP-VK.image.queue_transfer.2d_array.4x3x1.a8b8g8r8_srgb_pack32,Fail
dEQP-VK.image.queue_transfer.2d_array.4x3x1.r32g32_uint,Fail
dEQP-VK.image.queue_transfer.2d_array.64x31x1.r8g8b8a8_snorm,Fail
dEQP-VK.image.queue_transfer.3d.4x3x1.r32_uint,Fail
dEQP-VK.image.queue_transfer.3d.4x3x1.r5g5b5a1_unorm_pack16,Fail
dEQP-VK.image.queue_transfer.3d.64x31x1.b8g8r8a8_uint,Fail
dEQP-VK.image.queue_transfer.3d.64x31x1.r16g16b16a16_uint,Fail
gmem-dEQP-VK.image.queue_transfer.2d_array.16x15x1.r32g32_sfloat,Fail
gmem-dEQP-VK.image.queue_transfer.2d_array.4x3x2.a8b8g8r8_sint_pack32,Fail
gmem-dEQP-VK.image.queue_transfer.2d_array.64x31x1.r8_snorm,Fail
gmem-dEQP-VK.image.queue_transfer.3d.16x15x16.r8_uint,Fail
gmem-dEQP-VK.image.queue_transfer.3d.4x3x2.a8b8g8r8_uint_pack32,Fail
gmem-dEQP-VK.image.queue_transfer.3d.4x3x2.b4g4r4a4_unorm_pack16,Fail
gmem-dEQP-VK.image.queue_transfer.3d.64x31x1.b8g8r8a8_srgb,Fail
gmem-dEQP-VK.pipeline.pipeline_library.descriptor_limits.fragment_shader.input_attachments_6,Fail
stale-regs-dEQP-VK.image.queue_transfer.3d.16x15x1.a8b8g8r8_snorm_pack32,Fail
stale-regs-dEQP-VK.image.queue_transfer.3d.16x15x16.r8_uint,Fail
stale-regs-dEQP-VK.pipeline.monolithic.descriptor_limits.fragment_shader.input_attachments_6,Fail

View File

@@ -235,3 +235,6 @@ wayland-dEQP-EGL.functional.negative_api.create_pixmap_surface,Fail
# [...]
wayland-dEQP-EGL.functional.wide_color.pbuffer_888_colorspace_default,Fail
# New CTS failures in 1.3.5.0
KHR-GL45.polygon_offset_clamp.PolygonOffsetClampMinMax,Fail
KHR-GL45.polygon_offset_clamp.PolygonOffsetClampZeroInfinity,Fail

View File

@@ -714,3 +714,7 @@ spec@khr_texture_compression_astc@sliced-3d-miptree-gl srgb-fp,Fail
spec@khr_texture_compression_astc@sliced-3d-miptree-gl srgb-fp@sRGB decode full precision,Fail
spec@khr_texture_compression_astc@sliced-3d-miptree-gles srgb-fp,Fail
spec@khr_texture_compression_astc@sliced-3d-miptree-gles srgb-fp@sRGB decode full precision,Fail
# New CTS failures in 1.3.5.0
KHR-GL46.polygon_offset_clamp.PolygonOffsetClampMinMax,Fail
KHR-GL46.polygon_offset_clamp.PolygonOffsetClampZeroInfinity,Fail

View File

@@ -1,6 +1,2 @@
# https://gitlab.freedesktop.org/mesa/mesa/-/issues/6646
dEQP-GLES3.functional.shaders.matrix.inverse.dynamic.lowp_mat4_float_vertex,Fail
dEQP-GLES3.functional.shaders.matrix.inverse.dynamic.mediump_mat4_float_vertex,Fail
# Some incorrect colors and missing lines. Passes on its own. Need to extract and minify the failing caselist.
dEQP-GLES3.functional.transform_feedback.random_full_array_capture.separate.lines.4,Fail

View File

@@ -259,3 +259,7 @@ spec@glsl-4.00@execution@conversion@vert-conversion-explicit-dvec2-vec2,Fail
spec@glsl-4.00@execution@conversion@vert-conversion-explicit-dvec3-vec3,Fail
spec@glsl-4.00@execution@conversion@vert-conversion-explicit-dvec4-vec4,Fail
spec@glsl-4.50@execution@ssbo-atomiccompswap-int,Fail
# New CTS failures in 1.3.5.0
KHR-GL46.polygon_offset_clamp.PolygonOffsetClampMinMax,Fail
KHR-GL46.polygon_offset_clamp.PolygonOffsetClampZeroInfinity,Fail

View File

@@ -1,7 +1,3 @@
# CTS bug, see https://gitlab.khronos.org/Tracker/vk-gl-cts/-/issues/4108
dEQP-GLES3.functional.shaders.texture_functions.textureprojlodoffset.sampler2dshadow_vertex,Fail
dEQP-GLES3.functional.shaders.texture_functions.textureprojoffset.sampler2dshadow_vertex,Fail
# kopper
glx@glx-multi-window-single-context,Crash
spec@egl_chromium_sync_control@conformance@eglGetSyncValuesCHROMIUM_ust_test,Fail
@@ -428,3 +424,7 @@ spec@egl 1.4@egl-ext_egl_image_storage,Fail
# Introduced by a8d2b288eee3 ("ci/piglit: 2023-01-19 uprev")
spec@!opengl 1.1@line-smooth-stipple,Fail
# New CTS failures in 1.3.5.0
KHR-GL46.polygon_offset_clamp.PolygonOffsetClampMinMax,Fail
KHR-GL46.polygon_offset_clamp.PolygonOffsetClampZeroInfinity,Fail

View File

@@ -1,7 +1,3 @@
# CTS bug, see https://gitlab.khronos.org/Tracker/vk-gl-cts/-/issues/4108
dEQP-GLES3.functional.shaders.texture_functions.textureprojlodoffset.sampler2dshadow_vertex,Fail
dEQP-GLES3.functional.shaders.texture_functions.textureprojoffset.sampler2dshadow_vertex,Fail
# kopper
glx@glx-multi-window-single-context,Crash
spec@egl_chromium_sync_control@conformance@eglGetSyncValuesCHROMIUM_ust_test,Fail
@@ -432,3 +428,8 @@ spec@!opengl 1.1@depthstencil-default_fb-blit samples=6,Fail
spec@!opengl 1.1@depthstencil-default_fb-blit samples=8,Fail
spec@arb_pipeline_statistics_query@arb_pipeline_statistics_query-frag,Fail
spec@arb_texture_buffer_object@texture-buffer-size-clamp,Crash
# New CTS failures in 1.3.5.0
KHR-GL46.polygon_offset_clamp.PolygonOffsetClampMinMax,Fail
KHR-GL46.polygon_offset_clamp.PolygonOffsetClampZeroInfinity,Fail
dEQP-GLES3.functional.shaders.builtin_variable.pointcoord,Fail

View File

@@ -7,3 +7,11 @@ dEQP-VK.transform_feedback.primitives_generated_query.copy.host_reset.pgq_32bit_
dEQP-VK.transform_feedback.primitives_generated_query.copy.queue_reset.pgq_32bit_xfb_64bit.geom.xfb.rast.point_list.pgq_0_xfb_1.single_draw,Fail
dEQP-VK.transform_feedback.primitives_generated_query.get.host_reset.pgq_32bit_xfb_64bit.geom.xfb.no_rast.line_strip.pgq_default_xfb_0.single_draw,Fail
dEQP-VK.transform_feedback.primitives_generated_query.get.queue_reset.64bit.geom.xfb.rast.triangle_fan.pgq_default_xfb_1.single_draw,Fail
# New CTS failures in 1.3.5.0
dEQP-VK.pipeline.monolithic.multisample.multisampled_render_to_single_sampled.dynamic_rendering.clear_attachments.r8g8b8a8_unorm_r16g16b16a16_sfloat_r16g16b16a16_sint_d24_unorm_s8_uint.4x.ds_resolve_sample_zero.whole_framebuffer,Fail
dEQP-VK.pipeline.pipeline_library.multisample.multisampled_render_to_single_sampled.dynamic_rendering.multi_renderpass.r8g8b8a8_unorm_r16g16b16a16_sfloat_r16g16b16a16_sint_s8_uint.random_949,Fail
dEQP-VK.transform_feedback.primitives_generated_query.copy.host_reset.64bit.tese.xfb.no_rast.patch_list.pgq_default_xfb_default.single_draw,Fail
dEQP-VK.transform_feedback.primitives_generated_query.copy.queue_reset.32bit.geom.xfb.rast.triangle_strip.pgq_0_xfb_0.single_draw,Fail
dEQP-VK.transform_feedback.primitives_generated_query.get.host_reset.32bit.geom.xfb.no_rast.line_list_with_adjacency.pgq_default_xfb_default.single_draw,Fail
dEQP-VK.transform_feedback.primitives_generated_query.get.queue_reset.32bit.geom.xfb.color_write_disable_static_ds.line_strip_with_adjacency.pgq_0_xfb_1.single_draw,Fail

View File

@@ -2,3 +2,12 @@
# Likely fixed by VK-GL-CTS a3ac66a77e14 ("Zero initialize XFB counter buffer")
dEQP-VK.rasterization.provoking_vertex.transform_feedback.first.line_strip_with_adjacency,Fail
dEQP-VK.rasterization.provoking_vertex.transform_feedback.per_pipeline.triangle_strip_with_adjacency,Fail
# New CTS failures in 1.3.5.0
dEQP-VK.api.info.format_properties.g10x6_b10x6r10x6_2plane_420_unorm_3pack16,Fail
dEQP-VK.conditional_rendering.conditional_ignore.clear_condition_host_memory_expect_noop_inverted,Fail
dEQP-VK.conditional_rendering.conditional_ignore.clear_condition_host_memory_secondary_buffer_inherited_expect_noop_inverted,Fail
dEQP-VK.conditional_rendering.conditional_ignore.clear_condition_local_memory_expect_noop,Fail
dEQP-VK.conditional_rendering.conditional_ignore.clear_condition_local_memory_secondary_buffer_inherited_expect_noop_inverted,Fail
dEQP-VK.pipeline.fast_linked_library.extended_dynamic_state.cmd_buffer_start.depth_clamp_enable,Fail
dEQP-VK.pipeline.pipeline_library.extended_dynamic_state.cmd_buffer_start.depth_clamp_enable,Fail

View File

@@ -4,6 +4,7 @@
# still timing out in llvm jit
dEQP-VK.pipeline.monolithic.blend.dual_source.format.r16_unorm.states.color_1ms1a_cc_max_alpha_1msa_1mca_sub-color_o_1mdc_max_alpha_1mda_1ms1c_rsub-color_sas_da_max_alpha_1msa_1msc_add-color_sc_1msc_add_alpha_sas_1ms1a_rsub
dEQP-VK.pipeline.monolithic.blend.format.r16_unorm.states.color_sas_sa_min_alpha_ca_1mda_max-color_1mdc_dc_add_alpha_1mda_sas_rsub-color_sas_1mca_max_alpha_1mca_1mcc_min-color_o_1msa_rsub_alpha_dc_da_min
dEQP-VK.pipeline.pipeline_library.blend.dual_source.format.r16_unorm.states.color_1ms1a_cc_max_alpha_1msa_1mca_sub-color_o_1mdc_max_alpha_1mda_1ms1c_rsub-color_sas_da_max_alpha_1msa_1msc_add-color_sc_1msc_add_alpha_sas_1ms1a_rsub
dEQP-VK.pipeline.pipeline_library.blend.dual_source.format.r16_unorm.states.color_z_s1c_min_alpha_1mcc_s1c_rsub-color_ca_1mca_add_alpha_cc_1ms1a_min-color_ca_1ms1c_rsub_alpha_sa_sas_min-color_1ms1c_s1a_add_alpha_1mda_1ms1a_min
dEQP-VK.pipeline.pipeline_library.blend.format.r16_unorm.states.color_sas_sa_min_alpha_ca_1mda_max-color_1mdc_dc_add_alpha_1mda_sas_rsub-color_sas_1mca_max_alpha_1mca_1mcc_min-color_o_1msa_rsub_alpha_dc_da_min

View File

@@ -2,4 +2,8 @@
dEQP-VK.info.device_extensions
# Timeouts, see https://gitlab.freedesktop.org/mesa/mesa/-/issues/4641
dEQP-VK.ssbo.phys.layout.random.16bit.scalar.13
dEQP-VK.ssbo.phys.layout.random.16bit.scalar.13
# Timeouts
dEQP-VK.api.external.semaphore.sync_fd.export_multiple_times_temporary
dEQP-VK.api.external.fence.sync_fd.export_multiple_times_temporary

View File

@@ -82,3 +82,19 @@ dEQP-VK.drm_format_modifiers.export_import.r16g16_unorm,Crash
dEQP-VK.dynamic_rendering.suballocation.load_store_op_none.stencil_d32_sfloat_s8_uint_load_op_none_store_op_store,Crash
dEQP-VK.dynamic_rendering.suballocation.load_store_op_none.stencil_d24_unorm_s8_uint_load_op_none_store_op_store,Crash
dEQP-VK.dynamic_rendering.suballocation.load_store_op_none.stencil_d32_sfloat_s8_uint_load_op_none_store_op_dontcare,Crash
# New CTS failures in 1.3.5.0
dEQP-VK.draw.dynamic_rendering.complete_secondary_cmd_buff.linear_interpolation.offset_max_2_samples,Fail
dEQP-VK.draw.dynamic_rendering.partial_secondary_cmd_buff.linear_interpolation.no_offset_4_samples,Fail
dEQP-VK.draw.dynamic_rendering.partial_secondary_cmd_buff.linear_interpolation.offset_max_2_samples,Fail
dEQP-VK.draw.dynamic_rendering.partial_secondary_cmd_buff.linear_interpolation.offset_max_4_samples,Fail
dEQP-VK.draw.dynamic_rendering.partial_secondary_cmd_buff.linear_interpolation.offset_min_2_samples,Fail
dEQP-VK.draw.dynamic_rendering.partial_secondary_cmd_buff.linear_interpolation.offset_min_4_samples,Fail
dEQP-VK.draw.dynamic_rendering.primary_cmd_buff.linear_interpolation.no_offset_4_samples,Fail
dEQP-VK.draw.dynamic_rendering.primary_cmd_buff.linear_interpolation.offset_max_8_samples,Fail
dEQP-VK.draw.dynamic_rendering.primary_cmd_buff.linear_interpolation.offset_min_16_samples,Fail
dEQP-VK.draw.dynamic_rendering.primary_cmd_buff.linear_interpolation.offset_min_2_samples,Fail
dEQP-VK.draw.dynamic_rendering.primary_cmd_buff.linear_interpolation.offset_min_4_samples,Fail
dEQP-VK.draw.dynamic_rendering.primary_cmd_buff.linear_interpolation.offset_min_8_samples,Fail
dEQP-VK.draw.renderpass.linear_interpolation.no_offset_16_samples,Fail
dEQP-VK.drm_format_modifiers.export_import_fmt_features2.b4g4r4a4_unorm_pack16,Crash

View File

@@ -1636,3 +1636,313 @@ dEQP-VK.spirv_assembly.instruction.graphics.spirv_ids_abuse.lots_ids_frag,Crash
dEQP-VK.texture.filtering.unnormal.formats.d24_unorm_s8_uint_stencil.nearest,Fail
dEQP-VK.texture.filtering.unnormal.formats.s8_uint.nearest,Fail
# New CTS failures in 1.3.5.0
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_load.bc1_rgb_srgb_block.r16g16b16a16_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_load.bc1_rgb_srgb_block.r16g16b16a16_snorm,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_load.bc1_rgb_srgb_block.r16g16b16a16_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_load.bc1_rgb_srgb_block.r16g16b16a16_unorm,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_load.bc1_rgb_srgb_block.r32g32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_load.bc1_rgb_srgb_block.r32g32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_load.bc1_rgb_unorm_block.r16g16b16a16_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_load.bc1_rgb_unorm_block.r16g16b16a16_snorm,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_load.bc1_rgb_unorm_block.r16g16b16a16_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_load.bc1_rgb_unorm_block.r16g16b16a16_unorm,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_load.bc1_rgb_unorm_block.r32g32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_load.bc1_rgb_unorm_block.r32g32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_load.bc1_rgba_srgb_block.r16g16b16a16_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_load.bc1_rgba_srgb_block.r16g16b16a16_snorm,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_load.bc1_rgba_srgb_block.r16g16b16a16_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_load.bc1_rgba_srgb_block.r16g16b16a16_unorm,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_load.bc1_rgba_srgb_block.r32g32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_load.bc1_rgba_srgb_block.r32g32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_load.bc1_rgba_unorm_block.r16g16b16a16_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_load.bc1_rgba_unorm_block.r16g16b16a16_snorm,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_load.bc1_rgba_unorm_block.r16g16b16a16_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_load.bc1_rgba_unorm_block.r16g16b16a16_unorm,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_load.bc1_rgba_unorm_block.r32g32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_load.bc1_rgba_unorm_block.r32g32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_load.bc2_srgb_block.r32g32b32a32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_load.bc2_srgb_block.r32g32b32a32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_load.bc2_unorm_block.r32g32b32a32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_load.bc2_unorm_block.r32g32b32a32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_load.bc3_srgb_block.r32g32b32a32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_load.bc3_srgb_block.r32g32b32a32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_load.bc3_unorm_block.r32g32b32a32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_load.bc3_unorm_block.r32g32b32a32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_load.bc4_snorm_block.r16g16b16a16_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_load.bc4_snorm_block.r16g16b16a16_snorm,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_load.bc4_snorm_block.r16g16b16a16_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_load.bc4_snorm_block.r16g16b16a16_unorm,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_load.bc4_snorm_block.r32g32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_load.bc4_snorm_block.r32g32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_load.bc4_unorm_block.r16g16b16a16_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_load.bc4_unorm_block.r16g16b16a16_snorm,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_load.bc4_unorm_block.r16g16b16a16_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_load.bc4_unorm_block.r16g16b16a16_unorm,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_load.bc4_unorm_block.r32g32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_load.bc4_unorm_block.r32g32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_load.bc5_snorm_block.r32g32b32a32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_load.bc5_snorm_block.r32g32b32a32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_load.bc5_unorm_block.r32g32b32a32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_load.bc5_unorm_block.r32g32b32a32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_load.bc6h_sfloat_block.r32g32b32a32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_load.bc6h_sfloat_block.r32g32b32a32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_load.bc6h_ufloat_block.r32g32b32a32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_load.bc6h_ufloat_block.r32g32b32a32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_load.bc7_srgb_block.r32g32b32a32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_load.bc7_srgb_block.r32g32b32a32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_load.bc7_unorm_block.r32g32b32a32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_load.bc7_unorm_block.r32g32b32a32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_store.bc1_rgb_srgb_block.r16g16b16a16_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_store.bc1_rgb_srgb_block.r16g16b16a16_snorm,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_store.bc1_rgb_srgb_block.r16g16b16a16_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_store.bc1_rgb_srgb_block.r16g16b16a16_unorm,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_store.bc1_rgb_srgb_block.r32g32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_store.bc1_rgb_srgb_block.r32g32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_store.bc1_rgb_unorm_block.r16g16b16a16_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_store.bc1_rgb_unorm_block.r16g16b16a16_snorm,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_store.bc1_rgb_unorm_block.r16g16b16a16_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_store.bc1_rgb_unorm_block.r16g16b16a16_unorm,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_store.bc1_rgb_unorm_block.r32g32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_store.bc1_rgb_unorm_block.r32g32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_store.bc1_rgba_srgb_block.r16g16b16a16_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_store.bc1_rgba_srgb_block.r16g16b16a16_snorm,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_store.bc1_rgba_srgb_block.r16g16b16a16_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_store.bc1_rgba_srgb_block.r16g16b16a16_unorm,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_store.bc1_rgba_srgb_block.r32g32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_store.bc1_rgba_srgb_block.r32g32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_store.bc1_rgba_unorm_block.r16g16b16a16_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_store.bc1_rgba_unorm_block.r16g16b16a16_snorm,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_store.bc1_rgba_unorm_block.r16g16b16a16_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_store.bc1_rgba_unorm_block.r16g16b16a16_unorm,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_store.bc1_rgba_unorm_block.r32g32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_store.bc1_rgba_unorm_block.r32g32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_store.bc2_srgb_block.r32g32b32a32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_store.bc2_srgb_block.r32g32b32a32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_store.bc2_unorm_block.r32g32b32a32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_store.bc2_unorm_block.r32g32b32a32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_store.bc3_srgb_block.r32g32b32a32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_store.bc3_srgb_block.r32g32b32a32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_store.bc3_unorm_block.r32g32b32a32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_store.bc3_unorm_block.r32g32b32a32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_store.bc4_snorm_block.r16g16b16a16_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_store.bc4_snorm_block.r16g16b16a16_snorm,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_store.bc4_snorm_block.r16g16b16a16_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_store.bc4_snorm_block.r16g16b16a16_unorm,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_store.bc4_snorm_block.r32g32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_store.bc4_snorm_block.r32g32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_store.bc4_unorm_block.r16g16b16a16_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_store.bc4_unorm_block.r16g16b16a16_snorm,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_store.bc4_unorm_block.r16g16b16a16_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_store.bc4_unorm_block.r16g16b16a16_unorm,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_store.bc4_unorm_block.r32g32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_store.bc4_unorm_block.r32g32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_store.bc5_snorm_block.r32g32b32a32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_store.bc5_snorm_block.r32g32b32a32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_store.bc5_unorm_block.r32g32b32a32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_store.bc5_unorm_block.r32g32b32a32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_store.bc6h_sfloat_block.r32g32b32a32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_store.bc6h_sfloat_block.r32g32b32a32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_store.bc6h_ufloat_block.r32g32b32a32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_store.bc6h_ufloat_block.r32g32b32a32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_store.bc7_srgb_block.r32g32b32a32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_store.bc7_srgb_block.r32g32b32a32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_store.bc7_unorm_block.r32g32b32a32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.image_store.bc7_unorm_block.r32g32b32a32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texel_fetch.bc1_rgb_srgb_block.r16g16b16a16_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texel_fetch.bc1_rgb_srgb_block.r16g16b16a16_snorm,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texel_fetch.bc1_rgb_srgb_block.r16g16b16a16_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texel_fetch.bc1_rgb_srgb_block.r16g16b16a16_unorm,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texel_fetch.bc1_rgb_srgb_block.r32g32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texel_fetch.bc1_rgb_srgb_block.r32g32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texel_fetch.bc1_rgb_unorm_block.r16g16b16a16_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texel_fetch.bc1_rgb_unorm_block.r16g16b16a16_snorm,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texel_fetch.bc1_rgb_unorm_block.r16g16b16a16_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texel_fetch.bc1_rgb_unorm_block.r16g16b16a16_unorm,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texel_fetch.bc1_rgb_unorm_block.r32g32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texel_fetch.bc1_rgb_unorm_block.r32g32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texel_fetch.bc1_rgba_srgb_block.r16g16b16a16_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texel_fetch.bc1_rgba_srgb_block.r16g16b16a16_snorm,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texel_fetch.bc1_rgba_srgb_block.r16g16b16a16_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texel_fetch.bc1_rgba_srgb_block.r16g16b16a16_unorm,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texel_fetch.bc1_rgba_srgb_block.r32g32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texel_fetch.bc1_rgba_srgb_block.r32g32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texel_fetch.bc1_rgba_unorm_block.r16g16b16a16_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texel_fetch.bc1_rgba_unorm_block.r16g16b16a16_snorm,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texel_fetch.bc1_rgba_unorm_block.r16g16b16a16_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texel_fetch.bc1_rgba_unorm_block.r16g16b16a16_unorm,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texel_fetch.bc1_rgba_unorm_block.r32g32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texel_fetch.bc1_rgba_unorm_block.r32g32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texel_fetch.bc2_srgb_block.r32g32b32a32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texel_fetch.bc2_srgb_block.r32g32b32a32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texel_fetch.bc2_unorm_block.r32g32b32a32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texel_fetch.bc2_unorm_block.r32g32b32a32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texel_fetch.bc3_srgb_block.r32g32b32a32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texel_fetch.bc3_srgb_block.r32g32b32a32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texel_fetch.bc3_unorm_block.r32g32b32a32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texel_fetch.bc3_unorm_block.r32g32b32a32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texel_fetch.bc4_snorm_block.r16g16b16a16_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texel_fetch.bc4_snorm_block.r16g16b16a16_snorm,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texel_fetch.bc4_snorm_block.r16g16b16a16_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texel_fetch.bc4_snorm_block.r16g16b16a16_unorm,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texel_fetch.bc4_snorm_block.r32g32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texel_fetch.bc4_snorm_block.r32g32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texel_fetch.bc4_unorm_block.r16g16b16a16_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texel_fetch.bc4_unorm_block.r16g16b16a16_snorm,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texel_fetch.bc4_unorm_block.r16g16b16a16_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texel_fetch.bc4_unorm_block.r16g16b16a16_unorm,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texel_fetch.bc4_unorm_block.r32g32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texel_fetch.bc4_unorm_block.r32g32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texel_fetch.bc5_snorm_block.r32g32b32a32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texel_fetch.bc5_snorm_block.r32g32b32a32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texel_fetch.bc5_unorm_block.r32g32b32a32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texel_fetch.bc5_unorm_block.r32g32b32a32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texel_fetch.bc6h_sfloat_block.r32g32b32a32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texel_fetch.bc6h_sfloat_block.r32g32b32a32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texel_fetch.bc6h_ufloat_block.r32g32b32a32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texel_fetch.bc6h_ufloat_block.r32g32b32a32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texel_fetch.bc7_srgb_block.r32g32b32a32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texel_fetch.bc7_srgb_block.r32g32b32a32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texel_fetch.bc7_unorm_block.r32g32b32a32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texel_fetch.bc7_unorm_block.r32g32b32a32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texture.bc1_rgb_srgb_block.r16g16b16a16_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texture.bc1_rgb_srgb_block.r16g16b16a16_snorm,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texture.bc1_rgb_srgb_block.r16g16b16a16_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texture.bc1_rgb_srgb_block.r16g16b16a16_unorm,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texture.bc1_rgb_srgb_block.r32g32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texture.bc1_rgb_srgb_block.r32g32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texture.bc1_rgb_unorm_block.r16g16b16a16_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texture.bc1_rgb_unorm_block.r16g16b16a16_snorm,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texture.bc1_rgb_unorm_block.r16g16b16a16_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texture.bc1_rgb_unorm_block.r16g16b16a16_unorm,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texture.bc1_rgb_unorm_block.r32g32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texture.bc1_rgb_unorm_block.r32g32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texture.bc1_rgba_srgb_block.r16g16b16a16_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texture.bc1_rgba_srgb_block.r16g16b16a16_snorm,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texture.bc1_rgba_srgb_block.r16g16b16a16_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texture.bc1_rgba_srgb_block.r16g16b16a16_unorm,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texture.bc1_rgba_srgb_block.r32g32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texture.bc1_rgba_srgb_block.r32g32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texture.bc1_rgba_unorm_block.r16g16b16a16_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texture.bc1_rgba_unorm_block.r16g16b16a16_snorm,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texture.bc1_rgba_unorm_block.r16g16b16a16_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texture.bc1_rgba_unorm_block.r16g16b16a16_unorm,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texture.bc1_rgba_unorm_block.r32g32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texture.bc1_rgba_unorm_block.r32g32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texture.bc2_srgb_block.r32g32b32a32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texture.bc2_srgb_block.r32g32b32a32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texture.bc2_unorm_block.r32g32b32a32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texture.bc2_unorm_block.r32g32b32a32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texture.bc3_srgb_block.r32g32b32a32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texture.bc3_srgb_block.r32g32b32a32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texture.bc3_unorm_block.r32g32b32a32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texture.bc3_unorm_block.r32g32b32a32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texture.bc4_snorm_block.r16g16b16a16_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texture.bc4_snorm_block.r16g16b16a16_snorm,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texture.bc4_snorm_block.r16g16b16a16_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texture.bc4_snorm_block.r16g16b16a16_unorm,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texture.bc4_snorm_block.r32g32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texture.bc4_snorm_block.r32g32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texture.bc4_unorm_block.r16g16b16a16_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texture.bc4_unorm_block.r16g16b16a16_snorm,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texture.bc4_unorm_block.r16g16b16a16_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texture.bc4_unorm_block.r16g16b16a16_unorm,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texture.bc4_unorm_block.r32g32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texture.bc4_unorm_block.r32g32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texture.bc5_snorm_block.r32g32b32a32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texture.bc5_snorm_block.r32g32b32a32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texture.bc5_unorm_block.r32g32b32a32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texture.bc5_unorm_block.r32g32b32a32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texture.bc6h_sfloat_block.r32g32b32a32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texture.bc6h_sfloat_block.r32g32b32a32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texture.bc6h_ufloat_block.r32g32b32a32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texture.bc6h_ufloat_block.r32g32b32a32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texture.bc7_srgb_block.r32g32b32a32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texture.bc7_srgb_block.r32g32b32a32_uint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texture.bc7_unorm_block.r32g32b32a32_sint,Crash
dEQP-VK.image.texel_view_compatible.compute.basic.3d_image.texture.bc7_unorm_block.r32g32b32a32_uint,Crash
dEQP-VK.pipeline.monolithic.sampler.view_type.2d.format.d24_unorm_s8_uint.address_modes.all_mode_clamp_to_border_opaque_black_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.2d.format.d24_unorm_s8_uint.address_modes.all_mode_clamp_to_border_opaque_white_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.2d.format.d24_unorm_s8_uint.address_modes.all_mode_clamp_to_border_transparent_black_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.2d.format.d24_unorm_s8_uint.address_modes.uvw_mode_clamp_to_border_mode_clamp_to_edge_mode_clamp_to_edge_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.2d.format.d24_unorm_s8_uint.address_modes.uvw_mode_clamp_to_border_mode_mirror_clamp_to_edge_mode_repeat_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.2d.format.d24_unorm_s8_uint.address_modes.uvw_mode_clamp_to_border_mode_mirrored_repeat_mode_mirror_clamp_to_edge_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.2d.format.d24_unorm_s8_uint.address_modes.uvw_mode_clamp_to_border_mode_repeat_mode_mirrored_repeat_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.2d.format.d24_unorm_s8_uint.address_modes.uvw_mode_clamp_to_edge_mode_clamp_to_border_mode_repeat_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.2d.format.d24_unorm_s8_uint.address_modes.uvw_mode_mirror_clamp_to_edge_mode_clamp_to_border_mode_mirrored_repeat_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.2d.format.d24_unorm_s8_uint.address_modes.uvw_mode_mirrored_repeat_mode_clamp_to_border_mode_mirror_clamp_to_edge_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.2d.format.d24_unorm_s8_uint.address_modes.uvw_mode_repeat_mode_clamp_to_border_mode_clamp_to_edge_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.2d.format.d32_sfloat_s8_uint.address_modes.all_mode_clamp_to_border_opaque_black_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.2d.format.d32_sfloat_s8_uint.address_modes.all_mode_clamp_to_border_opaque_white_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.2d.format.d32_sfloat_s8_uint.address_modes.all_mode_clamp_to_border_transparent_black_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.2d.format.d32_sfloat_s8_uint.address_modes.uvw_mode_clamp_to_border_mode_clamp_to_edge_mode_clamp_to_edge_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.2d.format.d32_sfloat_s8_uint.address_modes.uvw_mode_clamp_to_border_mode_mirror_clamp_to_edge_mode_repeat_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.2d.format.d32_sfloat_s8_uint.address_modes.uvw_mode_clamp_to_border_mode_mirrored_repeat_mode_mirror_clamp_to_edge_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.2d.format.d32_sfloat_s8_uint.address_modes.uvw_mode_clamp_to_border_mode_repeat_mode_mirrored_repeat_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.2d.format.d32_sfloat_s8_uint.address_modes.uvw_mode_clamp_to_edge_mode_clamp_to_border_mode_repeat_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.2d.format.d32_sfloat_s8_uint.address_modes.uvw_mode_mirror_clamp_to_edge_mode_clamp_to_border_mode_mirrored_repeat_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.2d.format.d32_sfloat_s8_uint.address_modes.uvw_mode_mirrored_repeat_mode_clamp_to_border_mode_mirror_clamp_to_edge_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.2d.format.d32_sfloat_s8_uint.address_modes.uvw_mode_repeat_mode_clamp_to_border_mode_clamp_to_edge_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.2d_array.format.d24_unorm_s8_uint.address_modes.all_mode_clamp_to_border_opaque_black_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.2d_array.format.d24_unorm_s8_uint.address_modes.all_mode_clamp_to_border_opaque_white_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.2d_array.format.d24_unorm_s8_uint.address_modes.all_mode_clamp_to_border_transparent_black_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.2d_array.format.d24_unorm_s8_uint.address_modes.uvw_mode_clamp_to_border_mode_clamp_to_edge_mode_clamp_to_edge_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.2d_array.format.d24_unorm_s8_uint.address_modes.uvw_mode_clamp_to_border_mode_mirror_clamp_to_edge_mode_repeat_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.2d_array.format.d24_unorm_s8_uint.address_modes.uvw_mode_clamp_to_border_mode_mirrored_repeat_mode_mirror_clamp_to_edge_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.2d_array.format.d24_unorm_s8_uint.address_modes.uvw_mode_clamp_to_border_mode_repeat_mode_mirrored_repeat_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.2d_array.format.d24_unorm_s8_uint.address_modes.uvw_mode_clamp_to_edge_mode_clamp_to_border_mode_repeat_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.2d_array.format.d24_unorm_s8_uint.address_modes.uvw_mode_mirror_clamp_to_edge_mode_clamp_to_border_mode_mirrored_repeat_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.2d_array.format.d24_unorm_s8_uint.address_modes.uvw_mode_mirrored_repeat_mode_clamp_to_border_mode_mirror_clamp_to_edge_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.2d_array.format.d24_unorm_s8_uint.address_modes.uvw_mode_repeat_mode_clamp_to_border_mode_clamp_to_edge_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.2d_array.format.d32_sfloat_s8_uint.address_modes.all_mode_clamp_to_border_opaque_black_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.2d_array.format.d32_sfloat_s8_uint.address_modes.all_mode_clamp_to_border_opaque_white_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.2d_array.format.d32_sfloat_s8_uint.address_modes.all_mode_clamp_to_border_transparent_black_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.2d_array.format.d32_sfloat_s8_uint.address_modes.uvw_mode_clamp_to_border_mode_clamp_to_edge_mode_clamp_to_edge_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.2d_array.format.d32_sfloat_s8_uint.address_modes.uvw_mode_clamp_to_border_mode_mirror_clamp_to_edge_mode_repeat_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.2d_array.format.d32_sfloat_s8_uint.address_modes.uvw_mode_clamp_to_border_mode_mirrored_repeat_mode_mirror_clamp_to_edge_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.2d_array.format.d32_sfloat_s8_uint.address_modes.uvw_mode_clamp_to_border_mode_repeat_mode_mirrored_repeat_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.2d_array.format.d32_sfloat_s8_uint.address_modes.uvw_mode_clamp_to_edge_mode_clamp_to_border_mode_repeat_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.2d_array.format.d32_sfloat_s8_uint.address_modes.uvw_mode_mirror_clamp_to_edge_mode_clamp_to_border_mode_mirrored_repeat_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.2d_array.format.d32_sfloat_s8_uint.address_modes.uvw_mode_mirrored_repeat_mode_clamp_to_border_mode_mirror_clamp_to_edge_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.2d_array.format.d32_sfloat_s8_uint.address_modes.uvw_mode_repeat_mode_clamp_to_border_mode_clamp_to_edge_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.2d_unnormalized.format.d24_unorm_s8_uint.address_modes.all_mode_clamp_to_border_opaque_black_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.2d_unnormalized.format.d24_unorm_s8_uint.address_modes.all_mode_clamp_to_border_opaque_white_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.2d_unnormalized.format.d24_unorm_s8_uint.address_modes.all_mode_clamp_to_border_transparent_black_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.2d_unnormalized.format.d24_unorm_s8_uint.address_modes.uvw_mode_clamp_to_border_mode_clamp_to_edge_mode_clamp_to_edge_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.2d_unnormalized.format.d24_unorm_s8_uint.address_modes.uvw_mode_clamp_to_edge_mode_clamp_to_border_mode_repeat_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.2d_unnormalized.format.d32_sfloat_s8_uint.address_modes.all_mode_clamp_to_border_opaque_black_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.2d_unnormalized.format.d32_sfloat_s8_uint.address_modes.all_mode_clamp_to_border_opaque_white_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.2d_unnormalized.format.d32_sfloat_s8_uint.address_modes.all_mode_clamp_to_border_transparent_black_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.2d_unnormalized.format.d32_sfloat_s8_uint.address_modes.uvw_mode_clamp_to_border_mode_clamp_to_edge_mode_clamp_to_edge_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.2d_unnormalized.format.d32_sfloat_s8_uint.address_modes.uvw_mode_clamp_to_edge_mode_clamp_to_border_mode_repeat_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.3d.format.d24_unorm_s8_uint.address_modes.all_mode_clamp_to_border_opaque_black_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.3d.format.d24_unorm_s8_uint.address_modes.all_mode_clamp_to_border_opaque_white_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.3d.format.d24_unorm_s8_uint.address_modes.all_mode_clamp_to_border_transparent_black_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.3d.format.d24_unorm_s8_uint.address_modes.uvw_mode_clamp_to_border_mode_clamp_to_edge_mode_clamp_to_edge_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.3d.format.d24_unorm_s8_uint.address_modes.uvw_mode_clamp_to_border_mode_mirror_clamp_to_edge_mode_repeat_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.3d.format.d24_unorm_s8_uint.address_modes.uvw_mode_clamp_to_border_mode_mirrored_repeat_mode_mirror_clamp_to_edge_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.3d.format.d24_unorm_s8_uint.address_modes.uvw_mode_clamp_to_border_mode_repeat_mode_mirrored_repeat_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.3d.format.d24_unorm_s8_uint.address_modes.uvw_mode_clamp_to_edge_mode_clamp_to_border_mode_repeat_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.3d.format.d24_unorm_s8_uint.address_modes.uvw_mode_clamp_to_edge_mode_clamp_to_edge_mode_clamp_to_border_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.3d.format.d24_unorm_s8_uint.address_modes.uvw_mode_mirror_clamp_to_edge_mode_clamp_to_border_mode_mirrored_repeat_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.3d.format.d24_unorm_s8_uint.address_modes.uvw_mode_mirror_clamp_to_edge_mode_mirror_clamp_to_edge_mode_clamp_to_border_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.3d.format.d24_unorm_s8_uint.address_modes.uvw_mode_mirrored_repeat_mode_clamp_to_border_mode_mirror_clamp_to_edge_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.3d.format.d24_unorm_s8_uint.address_modes.uvw_mode_mirrored_repeat_mode_repeat_mode_clamp_to_border_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.3d.format.d24_unorm_s8_uint.address_modes.uvw_mode_repeat_mode_clamp_to_border_mode_clamp_to_edge_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.3d.format.d24_unorm_s8_uint.address_modes.uvw_mode_repeat_mode_mirrored_repeat_mode_clamp_to_border_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.3d.format.d32_sfloat_s8_uint.address_modes.all_mode_clamp_to_border_opaque_black_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.3d.format.d32_sfloat_s8_uint.address_modes.all_mode_clamp_to_border_opaque_white_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.3d.format.d32_sfloat_s8_uint.address_modes.all_mode_clamp_to_border_transparent_black_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.3d.format.d32_sfloat_s8_uint.address_modes.uvw_mode_clamp_to_border_mode_clamp_to_edge_mode_clamp_to_edge_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.3d.format.d32_sfloat_s8_uint.address_modes.uvw_mode_clamp_to_border_mode_mirror_clamp_to_edge_mode_repeat_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.3d.format.d32_sfloat_s8_uint.address_modes.uvw_mode_clamp_to_border_mode_mirrored_repeat_mode_mirror_clamp_to_edge_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.3d.format.d32_sfloat_s8_uint.address_modes.uvw_mode_clamp_to_border_mode_repeat_mode_mirrored_repeat_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.3d.format.d32_sfloat_s8_uint.address_modes.uvw_mode_clamp_to_edge_mode_clamp_to_border_mode_repeat_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.3d.format.d32_sfloat_s8_uint.address_modes.uvw_mode_clamp_to_edge_mode_clamp_to_edge_mode_clamp_to_border_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.3d.format.d32_sfloat_s8_uint.address_modes.uvw_mode_mirror_clamp_to_edge_mode_clamp_to_border_mode_mirrored_repeat_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.3d.format.d32_sfloat_s8_uint.address_modes.uvw_mode_mirror_clamp_to_edge_mode_mirror_clamp_to_edge_mode_clamp_to_border_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.3d.format.d32_sfloat_s8_uint.address_modes.uvw_mode_mirrored_repeat_mode_clamp_to_border_mode_mirror_clamp_to_edge_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.3d.format.d32_sfloat_s8_uint.address_modes.uvw_mode_mirrored_repeat_mode_repeat_mode_clamp_to_border_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.3d.format.d32_sfloat_s8_uint.address_modes.uvw_mode_repeat_mode_clamp_to_border_mode_clamp_to_edge_stencil,Fail
dEQP-VK.pipeline.monolithic.sampler.view_type.3d.format.d32_sfloat_s8_uint.address_modes.uvw_mode_repeat_mode_mirrored_repeat_mode_clamp_to_border_stencil,Fail

View File

@@ -19,3 +19,6 @@ wayland-dEQP-EGL.functional.negative_api.create_pixmap_surface,Fail
# Image comparison failed: reference = 0.000488281, expected = 0:1:0:0, result = 0:1:0:3
# Image comparison failed: reference = 0.000976562, expected = 1:1:0:0, result = 1:1:0:3
wayland-dEQP-EGL.functional.wide_color.pbuffer_888_colorspace_default,Fail
# New CTS failures in 1.3.5.0
KHR-GL46.polygon_offset_clamp.PolygonOffsetClampMinMax,Fail

View File

@@ -0,0 +1,3 @@
# New CTS failures in 1.3.5.0
KHR-GL46.polygon_offset_clamp.PolygonOffsetClampMinMax,Fail
KHR-GL46.polygon_offset_clamp.PolygonOffsetClampZeroInfinity,Fail

View File

@@ -162,3 +162,7 @@ spec@ext_transform_feedback@builtin-varyings gl_culldistance,Fail
spec@!opengl 1.1@line-smooth-coverage,Fail
spec@!opengl 1.1@line-smooth-stipple,Fail
# New CTS failures in 1.3.5.0
KHR-GL46.polygon_offset_clamp.PolygonOffsetClampMinMax,Fail
KHR-GL46.polygon_offset_clamp.PolygonOffsetClampZeroInfinity,Fail

View File

@@ -12,3 +12,7 @@ dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.6x6,Fail
dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.8x5,Fail
dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.8x6,Fail
dEQP-GLES3.functional.texture.compressed.astc.void_extent_ldr.8x8,Fail
# New CTS failures in 1.3.5.0
KHR-GL46.polygon_offset_clamp.PolygonOffsetClampMinMax,Fail
KHR-GL46.polygon_offset_clamp.PolygonOffsetClampZeroInfinity,Fail

View File

@@ -4,3 +4,8 @@ dEQP-VK.pipeline.monolithic.*
# These are taking too much memory (7.6GB and 6.2GB respectively) and can cause EOM issues
dEQP-VK.api.object_management.max_concurrent.graphics_pipeline
dEQP-VK.api.object_management.max_concurrent.compute_pipeline
# Unknown lvp issues not seen on hw drivers since CTS 1.3.5.0
dEQP-VK.binding_model.buffer_device_address.*
dEQP-VK.binding_model.shader_access.*
dEQP-VK.spirv_assembly.instruction.*