1 /*-------------------------------------------------------------------------
2 * Vulkan Conformance Tests
3 * ------------------------
5 * Copyright (c) 2015 Google Inc.
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
11 * http://www.apache.org/licenses/LICENSE-2.0
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
21 * \brief Vulkan Test Package
22 *//*--------------------------------------------------------------------*/
24 #include "vktTestPackage.hpp"
26 #include "tcuPlatform.hpp"
27 #include "tcuTestCase.hpp"
28 #include "tcuTestLog.hpp"
29 #include "tcuCommandLine.hpp"
31 #include "vkPlatform.hpp"
32 #include "vkPrograms.hpp"
33 #include "vkBinaryRegistry.hpp"
34 #include "vkGlslToSpirV.hpp"
35 #include "vkDebugReportUtil.hpp"
36 #include "vkQueryUtil.hpp"
38 #include "deUniquePtr.hpp"
40 #include "vktTestGroupUtil.hpp"
41 #include "vktApiTests.hpp"
42 #include "vktPipelineTests.hpp"
43 #include "vktBindingModelTests.hpp"
44 #include "vktSpvAsmTests.hpp"
45 #include "vktShaderLibrary.hpp"
46 #include "vktRenderPassTests.hpp"
47 #include "vktMemoryTests.hpp"
48 #include "vktShaderRenderBuiltinVarTests.hpp"
49 #include "vktShaderRenderDerivateTests.hpp"
50 #include "vktShaderRenderDiscardTests.hpp"
51 #include "vktShaderRenderIndexingTests.hpp"
52 #include "vktShaderRenderLoopTests.hpp"
53 #include "vktShaderRenderMatrixTests.hpp"
54 #include "vktShaderRenderOperatorTests.hpp"
55 #include "vktShaderRenderReturnTests.hpp"
56 #include "vktShaderRenderStructTests.hpp"
57 #include "vktShaderRenderSwitchTests.hpp"
58 #include "vktShaderRenderTextureFunctionTests.hpp"
59 #include "vktShaderRenderTextureGatherTests.hpp"
60 #include "vktShaderBuiltinTests.hpp"
61 #include "vktOpaqueTypeIndexingTests.hpp"
62 #include "vktAtomicOperationTests.hpp"
63 #include "vktUniformBlockTests.hpp"
64 #include "vktDynamicStateTests.hpp"
65 #include "vktSSBOLayoutTests.hpp"
66 #include "vktQueryPoolTests.hpp"
67 #include "vktDrawTests.hpp"
68 #include "vktComputeTests.hpp"
69 #include "vktImageTests.hpp"
70 #include "vktInfoTests.hpp"
71 #include "vktWsiTests.hpp"
72 #include "vktSynchronizationTests.hpp"
73 #include "vktSparseResourcesTests.hpp"
74 #include "vktTessellationTests.hpp"
75 #include "vktRasterizationTests.hpp"
76 #include "vktClippingTests.hpp"
77 #include "vktFragmentOperationsTests.hpp"
78 #include "vktTextureTests.hpp"
79 #include "vktGeometryTests.hpp"
80 #include "vktRobustnessTests.hpp"
85 namespace // compilation
88 vk::ProgramBinary* compileProgram (const vk::GlslSource& source, glu::ShaderProgramInfo* buildInfo)
90 return vk::buildProgram(source, buildInfo);
93 vk::ProgramBinary* compileProgram (const vk::SpirVAsmSource& source, vk::SpirVProgramInfo* buildInfo)
95 return vk::assembleProgram(source, buildInfo);
98 template <typename InfoType, typename IteratorType>
99 vk::ProgramBinary* buildProgram (const std::string& casePath,
101 const vk::BinaryRegistryReader& prebuiltBinRegistry,
103 vk::BinaryCollection* progCollection)
105 const vk::ProgramIdentifier progId (casePath, iter.getName());
106 const tcu::ScopedLogSection progSection (log, iter.getName(), "Program: " + iter.getName());
107 de::MovePtr<vk::ProgramBinary> binProg;
112 binProg = de::MovePtr<vk::ProgramBinary>(compileProgram(iter.getProgram(), &buildInfo));
115 catch (const tcu::NotSupportedError& err)
117 // Try to load from cache
118 log << err << tcu::TestLog::Message << "Building from source not supported, loading stored binary instead" << tcu::TestLog::EndMessage;
120 binProg = de::MovePtr<vk::ProgramBinary>(prebuiltBinRegistry.loadProgram(progId));
122 log << iter.getProgram();
124 catch (const tcu::Exception&)
126 // Build failed for other reason
131 TCU_CHECK_INTERNAL(binProg);
134 vk::ProgramBinary* const returnBinary = binProg.get();
136 progCollection->add(progId.programName, binProg);
142 } // anonymous(compilation)
155 MovePtr<vk::DebugReportRecorder> createDebugReportRecorder (const vk::PlatformInterface& vkp, const vk::InstanceInterface& vki, vk::VkInstance instance)
157 if (isDebugReportSupported(vkp))
158 return MovePtr<vk::DebugReportRecorder>(new vk::DebugReportRecorder(vki, instance));
160 TCU_THROW(NotSupportedError, "VK_EXT_debug_report is not supported");
167 class TestCaseExecutor : public tcu::TestCaseExecutor
170 TestCaseExecutor (tcu::TestContext& testCtx);
171 ~TestCaseExecutor (void);
173 virtual void init (tcu::TestCase* testCase, const std::string& path);
174 virtual void deinit (tcu::TestCase* testCase);
176 virtual tcu::TestNode::IterateResult iterate (tcu::TestCase* testCase);
179 vk::BinaryCollection m_progCollection;
180 vk::BinaryRegistryReader m_prebuiltBinRegistry;
182 const UniquePtr<vk::Library> m_library;
185 const UniquePtr<vk::DebugReportRecorder> m_debugReportRecorder;
187 TestInstance* m_instance; //!< Current test case instance
190 static MovePtr<vk::Library> createLibrary (tcu::TestContext& testCtx)
192 return MovePtr<vk::Library>(testCtx.getPlatform().getVulkanPlatform().createLibrary());
195 TestCaseExecutor::TestCaseExecutor (tcu::TestContext& testCtx)
196 : m_prebuiltBinRegistry (testCtx.getArchive(), "vulkan/prebuilt")
197 , m_library (createLibrary(testCtx))
198 , m_context (testCtx, m_library->getPlatformInterface(), m_progCollection)
199 , m_debugReportRecorder (testCtx.getCommandLine().isValidationEnabled()
200 ? createDebugReportRecorder(m_library->getPlatformInterface(),
201 m_context.getInstanceInterface(),
202 m_context.getInstance())
203 : MovePtr<vk::DebugReportRecorder>(DE_NULL))
204 , m_instance (DE_NULL)
208 TestCaseExecutor::~TestCaseExecutor (void)
213 void TestCaseExecutor::init (tcu::TestCase* testCase, const std::string& casePath)
215 const TestCase* vktCase = dynamic_cast<TestCase*>(testCase);
216 tcu::TestLog& log = m_context.getTestContext().getLog();
217 vk::SourceCollections sourceProgs;
219 DE_UNREF(casePath); // \todo [2015-03-13 pyry] Use this to identify ProgramCollection storage path
222 TCU_THROW(InternalError, "Test node not an instance of vkt::TestCase");
224 m_progCollection.clear();
225 vktCase->initPrograms(sourceProgs);
227 for (vk::GlslSourceCollection::Iterator progIter = sourceProgs.glslSources.begin(); progIter != sourceProgs.glslSources.end(); ++progIter)
229 vk::ProgramBinary* binProg = buildProgram<glu::ShaderProgramInfo, vk::GlslSourceCollection::Iterator>(casePath, progIter, m_prebuiltBinRegistry, log, &m_progCollection);
233 std::ostringstream disasm;
235 vk::disassembleProgram(*binProg, &disasm);
237 log << vk::SpirVAsmSource(disasm.str());
239 catch (const tcu::NotSupportedError& err)
245 for (vk::SpirVAsmCollection::Iterator asmIterator = sourceProgs.spirvAsmSources.begin(); asmIterator != sourceProgs.spirvAsmSources.end(); ++asmIterator)
247 buildProgram<vk::SpirVProgramInfo, vk::SpirVAsmCollection::Iterator>(casePath, asmIterator, m_prebuiltBinRegistry, log, &m_progCollection);
250 DE_ASSERT(!m_instance);
251 m_instance = vktCase->createInstance(m_context);
254 void TestCaseExecutor::deinit (tcu::TestCase*)
257 m_instance = DE_NULL;
259 // Collect and report any debug messages
260 if (m_debugReportRecorder)
262 // \note We are not logging INFORMATION and DEBUG messages
263 static const vk::VkDebugReportFlagsEXT errorFlags = vk::VK_DEBUG_REPORT_ERROR_BIT_EXT;
264 static const vk::VkDebugReportFlagsEXT logFlags = errorFlags
265 | vk::VK_DEBUG_REPORT_WARNING_BIT_EXT
266 | vk::VK_DEBUG_REPORT_PERFORMANCE_WARNING_BIT_EXT;
268 typedef vk::DebugReportRecorder::MessageList DebugMessages;
270 const DebugMessages& messages = m_debugReportRecorder->getMessages();
271 tcu::TestLog& log = m_context.getTestContext().getLog();
273 if (messages.begin() != messages.end())
275 const tcu::ScopedLogSection section (log, "DebugMessages", "Debug Messages");
278 for (DebugMessages::const_iterator curMsg = messages.begin(); curMsg != messages.end(); ++curMsg)
280 if ((curMsg->flags & logFlags) != 0)
281 log << tcu::TestLog::Message << *curMsg << tcu::TestLog::EndMessage;
283 if ((curMsg->flags & errorFlags) != 0)
287 m_debugReportRecorder->clearMessages();
290 m_context.getTestContext().setTestResult(QP_TEST_RESULT_INTERNAL_ERROR, (de::toString(numErrors) + " API usage errors found").c_str());
295 tcu::TestNode::IterateResult TestCaseExecutor::iterate (tcu::TestCase*)
297 DE_ASSERT(m_instance);
299 const tcu::TestStatus result = m_instance->iterate();
301 if (result.isComplete())
303 // Vulkan tests shouldn't set result directly
304 DE_ASSERT(m_context.getTestContext().getTestResult() == QP_TEST_RESULT_LAST);
305 m_context.getTestContext().setTestResult(result.getCode(), result.getDescription().c_str());
306 return tcu::TestNode::STOP;
309 return tcu::TestNode::CONTINUE;
314 void createGlslTests (tcu::TestCaseGroup* glslTests)
316 tcu::TestContext& testCtx = glslTests->getTestContext();
318 // ShaderLibrary-based tests
322 const char* description;
325 { "arrays", "Arrays" },
326 { "conditionals", "Conditional statements" },
327 { "constant_expressions", "Constant expressions" },
328 { "constants", "Constants" },
329 { "conversions", "Type conversions" },
330 { "functions", "Functions" },
331 { "linkage", "Linking" },
332 { "scoping", "Scoping" },
333 { "swizzles", "Swizzles" },
336 for (int ndx = 0; ndx < DE_LENGTH_OF_ARRAY(s_es310Tests); ndx++)
337 glslTests->addChild(createShaderLibraryGroup(testCtx,
338 s_es310Tests[ndx].name,
339 s_es310Tests[ndx].description,
340 std::string("vulkan/glsl/es310/") + s_es310Tests[ndx].name + ".test").release());
342 // ShaderRenderCase-based tests
343 glslTests->addChild(sr::createDerivateTests (testCtx));
344 glslTests->addChild(sr::createDiscardTests (testCtx));
345 glslTests->addChild(sr::createIndexingTests (testCtx));
346 glslTests->addChild(sr::createLoopTests (testCtx));
347 glslTests->addChild(sr::createMatrixTests (testCtx));
348 glslTests->addChild(sr::createOperatorTests (testCtx));
349 glslTests->addChild(sr::createReturnTests (testCtx));
350 glslTests->addChild(sr::createStructTests (testCtx));
351 glslTests->addChild(sr::createSwitchTests (testCtx));
352 glslTests->addChild(sr::createTextureFunctionTests (testCtx));
353 glslTests->addChild(sr::createTextureGatherTests (testCtx));
354 glslTests->addChild(sr::createBuiltinVarTests (testCtx));
356 // ShaderExecutor-based tests
357 glslTests->addChild(shaderexecutor::createBuiltinTests (testCtx));
358 glslTests->addChild(shaderexecutor::createOpaqueTypeIndexingTests (testCtx));
359 glslTests->addChild(shaderexecutor::createAtomicOperationTests (testCtx));
364 TestPackage::TestPackage (tcu::TestContext& testCtx)
365 : tcu::TestPackage(testCtx, "dEQP-VK", "dEQP Vulkan Tests")
369 TestPackage::~TestPackage (void)
373 tcu::TestCaseExecutor* TestPackage::createExecutor (void) const
375 return new TestCaseExecutor(m_testCtx);
378 void TestPackage::init (void)
380 addChild(createTestGroup (m_testCtx, "info", "Build and Device Info Tests", createInfoTests));
381 addChild(api::createTests (m_testCtx));
382 addChild(memory::createTests (m_testCtx));
383 addChild(pipeline::createTests (m_testCtx));
384 addChild(BindingModel::createTests (m_testCtx));
385 addChild(SpirVAssembly::createTests (m_testCtx));
386 addChild(createTestGroup (m_testCtx, "glsl", "GLSL shader execution tests", createGlslTests));
387 addChild(createRenderPassTests (m_testCtx));
388 addChild(ubo::createTests (m_testCtx));
389 addChild(DynamicState::createTests (m_testCtx));
390 addChild(ssbo::createTests (m_testCtx));
391 addChild(QueryPool::createTests (m_testCtx));
392 addChild(Draw::createTests (m_testCtx));
393 addChild(compute::createTests (m_testCtx));
394 addChild(image::createTests (m_testCtx));
395 addChild(wsi::createTests (m_testCtx));
396 addChild(synchronization::createTests (m_testCtx));
397 addChild(sparse::createTests (m_testCtx));
398 addChild(tessellation::createTests (m_testCtx));
399 addChild(rasterization::createTests (m_testCtx));
400 addChild(clipping::createTests (m_testCtx));
401 addChild(FragmentOperations::createTests(m_testCtx));
402 addChild(texture::createTests (m_testCtx));
403 addChild(geometry::createTests (m_testCtx));
404 addChild(robustness::createTests (m_testCtx));