From 8ce5f9e12f723e78077aa0ab4eae91ae8528f545 Mon Sep 17 00:00:00 2001 From: Peter Quayle Date: Tue, 11 Dec 2018 18:02:26 +0000 Subject: [PATCH] Reduce devices created in device_group tests The device_group tests could sometimes hit timeouts on slower CPUs. This change reduces the number of objects created in these tests to match the reduced number used in the device and instance tests. Affects: dEQP-VK.api.object_management. multithreaded_per_thread_resources.device_group dEQP-VK.api.object_management. multithreaded_shared_resources.device_group Components: Vulkan VK-GL-CTS issue: 1512 Change-Id: Icb68643ff530a8b1a1a7daa9fc93d8db8bc5faf9 (cherry picked from commit 9134406c47a0f345ea9e3c67dc7b99c7947b2436) --- external/vulkancts/modules/vulkan/api/vktApiObjectManagementTests.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/external/vulkancts/modules/vulkan/api/vktApiObjectManagementTests.cpp b/external/vulkancts/modules/vulkan/api/vktApiObjectManagementTests.cpp index 05fbeeb..c5a99b1 100644 --- a/external/vulkancts/modules/vulkan/api/vktApiObjectManagementTests.cpp +++ b/external/vulkancts/modules/vulkan/api/vktApiObjectManagementTests.cpp @@ -2410,6 +2410,7 @@ template int getCreateCount (void) { return 100; } // Creating VkDevice and VkInstance can take significantly longer than other object types template<> int getCreateCount (void) { return 20; } template<> int getCreateCount (void) { return 20; } +template<> int getCreateCount (void) { return 20; } template class CreateThread : public ThreadGroupThread -- 2.7.4