From: PaperChalice Date: Sat, 24 Sep 2022 06:52:56 +0000 (+0800) Subject: loader: fix log message X-Git-Tag: upstream/1.3.240~103 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9c40a28e3ee654cd5997570d26eb87062017647e;p=platform%2Fupstream%2FVulkan-Loader.git loader: fix log message --- diff --git a/loader/trampoline.c b/loader/trampoline.c index d65e7b1e..12f7755c 100644 --- a/loader/trampoline.c +++ b/loader/trampoline.c @@ -543,8 +543,8 @@ LOADER_EXPORT VKAPI_ATTR VkResult VKAPI_CALL vkCreateInstance(const VkInstanceCr loader_log( ptr_instance, VULKAN_LOADER_ERROR_BIT | VULKAN_LOADER_DRIVER_BIT, 0, "vkCreateInstance: Found drivers that contain devices which support the portability subset, but the " - "portability enumeration bit was not set!. Applications that wish to enumerate portability drivers must set the " - "VK_INSTANCE_CREATE_ENUMERATE_PORTABILITY_BIT_KHR bit in the VkInstanceCreateInfo flags and" + "portability enumeration bit was not set! Applications that wish to enumerate portability drivers must set the " + "VK_INSTANCE_CREATE_ENUMERATE_PORTABILITY_BIT_KHR bit in the VkInstanceCreateInfo flags and " "enable the VK_KHR_portability_enumeration instance extension."); } loader_log(ptr_instance, VULKAN_LOADER_ERROR_BIT | VULKAN_LOADER_DRIVER_BIT, 0, "vkCreateInstance: Found no drivers!"); diff --git a/tests/loader_regression_tests.cpp b/tests/loader_regression_tests.cpp index 32070e38..4bf72eb1 100644 --- a/tests/loader_regression_tests.cpp +++ b/tests/loader_regression_tests.cpp @@ -3285,8 +3285,8 @@ TEST(SortedPhysicalDevices, DeviceGroupsSortedDisabled) { const char* portability_driver_warning = "vkCreateInstance: Found drivers that contain devices which support the portability subset, but the " - "portability enumeration bit was not set!. Applications that wish to enumerate portability drivers must set the " - "VK_INSTANCE_CREATE_ENUMERATE_PORTABILITY_BIT_KHR bit in the VkInstanceCreateInfo flags and" + "portability enumeration bit was not set! Applications that wish to enumerate portability drivers must set the " + "VK_INSTANCE_CREATE_ENUMERATE_PORTABILITY_BIT_KHR bit in the VkInstanceCreateInfo flags and " "enable the VK_KHR_portability_enumeration instance extension."; TEST(PortabilityICDConfiguration, PortabilityICDOnly) {