From 43662d49d89186b67e3e99ec0ca96aab21bdc67a Mon Sep 17 00:00:00 2001 From: Ruiling Song Date: Wed, 22 Jul 2020 17:42:41 +0800 Subject: [PATCH] Disable a test that access uninitialized variable The test case expect clamp(uninitialized_variable, 1, 1) returning 1. But accessing the uninitialized variable will get undefined value, and the undefined value may be further propagated. Then some compiler may just optimize such case into undef. Components: Vulkan VK-GL-CTS Issue: 2457 Affects: dEQP-VK.graphicsfuzz.return-mat2x3-value-from-func Change-Id: Iedfe91fdf0ebda89bb62db6144e1161f47eb5898 --- external/vulkancts/mustpass/master/src/excluded-tests.txt | 2 ++ external/vulkancts/mustpass/master/vk-default.txt | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/external/vulkancts/mustpass/master/src/excluded-tests.txt b/external/vulkancts/mustpass/master/src/excluded-tests.txt index 511fbcb..f339eac 100644 --- a/external/vulkancts/mustpass/master/src/excluded-tests.txt +++ b/external/vulkancts/mustpass/master/src/excluded-tests.txt @@ -14,6 +14,8 @@ dEQP-VK.pipeline.multisample.*.primitive_point_1px_sparse # Test shader length is excessive, excluding until such time as the test case can be re-visited. dEQP-VK.ssbo.layout.random.scalar.75 +# VK-GL-CTS 2457 +dEQP-VK.graphicsfuzz.return-mat2x3-value-from-func # VK-GL-CTS 2157, CL 5278 # Excluded them as Intel HW is failing these tests. diff --git a/external/vulkancts/mustpass/master/vk-default.txt b/external/vulkancts/mustpass/master/vk-default.txt index 8a5f1ee..e031ac6 100644 --- a/external/vulkancts/mustpass/master/vk-default.txt +++ b/external/vulkancts/mustpass/master/vk-default.txt @@ -683663,7 +683663,6 @@ dEQP-VK.graphicsfuzz.return-before-writing-wrong-color dEQP-VK.graphicsfuzz.return-float-from-while-loop dEQP-VK.graphicsfuzz.return-in-loop-in-function dEQP-VK.graphicsfuzz.return-inside-loop-in-function -dEQP-VK.graphicsfuzz.return-mat2x3-value-from-func dEQP-VK.graphicsfuzz.returned-boolean-in-vector dEQP-VK.graphicsfuzz.set-color-in-one-iteration-while-loop dEQP-VK.graphicsfuzz.similar-nested-ifs -- 2.7.4