From: Mark Mueller Date: Thu, 8 Sep 2016 17:11:25 +0000 (-0600) Subject: tests: GH428 removal of offending line X-Git-Tag: sdk-1.0.26.0~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5e2a8443e9d4c2dcfac3c388fd9d53f86a0ea002;p=platform%2Fupstream%2FVulkan-LoaderAndValidationLayers.git tests: GH428 removal of offending line The ill constructed draw is not needed and causes issues on some platforms. Change-Id: I695a386e3a70a2d004b047044ee534e204a6499a --- diff --git a/tests/layer_validation_tests.cpp b/tests/layer_validation_tests.cpp index b630e6b..579f8ed 100644 --- a/tests/layer_validation_tests.cpp +++ b/tests/layer_validation_tests.cpp @@ -12644,7 +12644,6 @@ TEST_F(VkLayerTest, InUseDestroyedSignaled) { vkCmdBindPipeline(m_commandBuffer->GetBufferHandle(), VK_PIPELINE_BIND_POINT_GRAPHICS, pipe.handle()); vkCmdBindDescriptorSets(m_commandBuffer->GetBufferHandle(), VK_PIPELINE_BIND_POINT_GRAPHICS, pipeline_layout, 0, 1, &descriptorset, 0, NULL); - vkCmdDraw(m_commandBuffer->handle(), 3, 1, 0, 0); EndCommandBuffer();