From 7782bc34522e28ba1816c25ab5ceb80b6bb2fe4f Mon Sep 17 00:00:00 2001 From: Jake Turner Date: Thu, 8 Jan 2026 06:57:56 +1300 Subject: [PATCH] Make VK_Graphics_Pipeline debugged pixel test fail instead of an error --- util/test/tests/Vulkan/VK_Graphics_Pipeline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/test/tests/Vulkan/VK_Graphics_Pipeline.py b/util/test/tests/Vulkan/VK_Graphics_Pipeline.py index 29a8d8833..69bc2a497 100644 --- a/util/test/tests/Vulkan/VK_Graphics_Pipeline.py +++ b/util/test/tests/Vulkan/VK_Graphics_Pipeline.py @@ -160,7 +160,7 @@ class VK_Graphics_Pipeline(rdtest.TestCase): is_eq, diff_amt = rdtest.value_compare_diff(history[1].shaderOut.col.floatValue, debuggedValue, eps=5.0E-06) if not is_eq: - rdtest.log.error( + raise rdtest.TestFailureException( "Debugged pixel value {}: {} difference. {} doesn't exactly match history shader output {}".format( debugged.name, diff_amt, debuggedValue, history[1].shaderOut.col.floatValue))