From 3e7bf08aadb749eed0419b7023166ca880bc7a75 Mon Sep 17 00:00:00 2001 From: Ben Clayton Date: Wed, 4 Dec 2019 17:13:41 +0000 Subject: [PATCH] Bump timeout for the basic fence tests 10ms for the LONG_FENCE_WAIT could cause spurious test failures for CPU-based Vulkan implementations when the CPU is under heavy load. This is now bumped to a second, but assuming the test passes, this should never block for the entire second. Affects: dEQP-VK.synchronization.basic.fence.* Components: Vulkan Change-Id: Ice07a1697b57e789b9f57f4a5da663c83a0c132a --- .../vulkan/synchronization/vktSynchronizationBasicFenceTests.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/external/vulkancts/modules/vulkan/synchronization/vktSynchronizationBasicFenceTests.cpp b/external/vulkancts/modules/vulkan/synchronization/vktSynchronizationBasicFenceTests.cpp index b266cd4..76d4a38 100644 --- a/external/vulkancts/modules/vulkan/synchronization/vktSynchronizationBasicFenceTests.cpp +++ b/external/vulkancts/modules/vulkan/synchronization/vktSynchronizationBasicFenceTests.cpp @@ -38,8 +38,8 @@ namespace { using namespace vk; -static const deUint64 SHORT_FENCE_WAIT = 1000ull; -static const deUint64 LONG_FENCE_WAIT = 10000000ull; +static const deUint64 SHORT_FENCE_WAIT = 1000ull; // 1us +static const deUint64 LONG_FENCE_WAIT = 1000000000ull; // 1s tcu::TestStatus basicOneFenceCase (Context& context) { -- 2.7.4