From b6b95f96b4672b73e3434c8c15e569e3f853d0bb Mon Sep 17 00:00:00 2001 From: =?utf8?q?Mika=20Isoj=C3=A4rvi?= Date: Fri, 7 Aug 2015 14:47:05 -0700 Subject: [PATCH] Fix addFunctionCase() functions. Change-Id: I8ef268588717f5be7e5b375806302cc2e74f861c --- external/vulkancts/modules/vulkan/vktTestCaseUtil.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/external/vulkancts/modules/vulkan/vktTestCaseUtil.hpp b/external/vulkancts/modules/vulkan/vktTestCaseUtil.hpp index fc45b3c..3fe936d 100644 --- a/external/vulkancts/modules/vulkan/vktTestCaseUtil.hpp +++ b/external/vulkancts/modules/vulkan/vktTestCaseUtil.hpp @@ -215,7 +215,7 @@ void addFunctionCase (tcu::TestCaseGroup* group, typename FunctionInstance1::Function testFunc, Arg0 arg0) { - group->addChild(createFunctionCase(group->getTestContext(), tcu::NODETYPE_SELF_VALIDATE, name, desc, testFunc, arg0)); + group->addChild(createFunctionCase(group->getTestContext(), tcu::NODETYPE_SELF_VALIDATE, name, desc, testFunc, arg0)); } template @@ -226,7 +226,7 @@ void addFunctionCase (tcu::TestCaseGroup* group, typename FunctionInstance1::Function testFunc, Arg0 arg0) { - group->addChild(createFunctionCase(group->getTestContext(), type, name, desc, testFunc, arg0)); + group->addChild(createFunctionCase(group->getTestContext(), type, name, desc, testFunc, arg0)); } template @@ -237,7 +237,7 @@ void addFunctionCaseWithPrograms (tcu::TestCaseGroup* group, typename FunctionInstance1::Function testFunc, Arg0 arg0) { - group->addChild(createFunctionCase(group->getTestContext(), tcu::NODETYPE_SELF_VALIDATE, name, desc, initPrograms, testFunc, arg0)); + group->addChild(createFunctionCaseWithPrograms(group->getTestContext(), tcu::NODETYPE_SELF_VALIDATE, name, desc, initPrograms, testFunc, arg0)); } template @@ -249,7 +249,7 @@ void addFunctionCaseWithPrograms (tcu::TestCaseGroup* group, typename FunctionInstance1::Function testFunc, Arg0 arg0) { - group->addChild(createFunctionCase(group->getTestContext(), type, name, desc, initPrograms, testFunc, arg0)); + group->addChild(createFunctionCaseWithPrograms(group->getTestContext(), type, name, desc, initPrograms, testFunc, arg0)); } } // vkt -- 2.7.4