1 /*------------------------------------------------------------------------
2  * Vulkan Conformance Tests
3  * ------------------------
4  *
5  * Copyright (c) 2017 The Khronos Group Inc.
6  * Copyright (c) 2017 Samsung Electronics Co., Ltd.
7  *
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  *
20  *//*!
21  * \file
22  * \brief Protected memory tests
23  *//*--------------------------------------------------------------------*/
24 
25 #include "vktProtectedMemTests.hpp"
26 
27 #include "vktTestCase.hpp"
28 #include "vktTestGroupUtil.hpp"
29 
30 #include "vktProtectedMemAttachmentLoadTests.hpp"
31 #include "vktProtectedMemAttachmentClearTests.hpp"
32 #include "vktProtectedMemCopyImageTests.hpp"
33 #include "vktProtectedMemBlitImageTests.hpp"
34 #include "vktProtectedMemClearColorImageTests.hpp"
35 #include "vktProtectedMemFillUpdateCopyBufferTests.hpp"
36 #include "vktProtectedMemCopyImageToBufferTests.hpp"
37 #include "vktProtectedMemCopyBufferToImageTests.hpp"
38 #include "vktProtectedMemStorageBufferTests.hpp"
39 #include "vktProtectedMemShaderImageAccessTests.hpp"
40 #include "vktProtectedMemWsiSwapchainTests.hpp"
41 #include "vktProtectedMemYCbCrConversionTests.hpp"
42 #include "vktProtectedMemWorkgroupStorageTests.hpp"
43 
44 namespace vkt
45 {
46 namespace ProtectedMem
47 {
48 
createTests(tcu::TestContext & testCtx)49 tcu::TestCaseGroup* createTests (tcu::TestContext& testCtx)
50 {
51 	de::MovePtr<tcu::TestCaseGroup> protectedTests (new tcu::TestCaseGroup(testCtx, "protected_memory", "Protected Memory Tests"));
52 
53 	// Attachment test case group
54 	{
55 		de::MovePtr<tcu::TestCaseGroup> attachmentTestGroup (new tcu::TestCaseGroup(testCtx, "attachment", "Protected Memory Attachment Tests"));
56 		attachmentTestGroup->addChild(createAttachmentLoadTests(testCtx));
57 		attachmentTestGroup->addChild(createAttachmentClearTests(testCtx));
58 		protectedTests->addChild(attachmentTestGroup.release());
59 	}
60 
61 	// Image test case group
62 	{
63 		de::MovePtr<tcu::TestCaseGroup> imageTestGroup (new tcu::TestCaseGroup(testCtx, "image", "Protected Memory Image Tests"));
64 		imageTestGroup->addChild(createCopyImageTests(testCtx));
65 		imageTestGroup->addChild(createBlitImageTests(testCtx));
66 		imageTestGroup->addChild(createClearColorImageTests(testCtx));
67 		imageTestGroup->addChild(createCopyBufferToImageTests(testCtx));
68 		imageTestGroup->addChild(createShaderImageAccessTests(testCtx));
69 		protectedTests->addChild(imageTestGroup.release());
70 	}
71 
72 	// Buffer test case group
73 	{
74 		de::MovePtr<tcu::TestCaseGroup> bufferTestGroup (new tcu::TestCaseGroup(testCtx, "buffer", "Protected Memory Buffer Tests"));
75 		bufferTestGroup->addChild(createFillBufferTests(testCtx));
76 		bufferTestGroup->addChild(createUpdateBufferTests(testCtx));
77 		bufferTestGroup->addChild(createCopyBufferTests(testCtx));
78 		bufferTestGroup->addChild(createCopyImageToFloatBufferTests(testCtx));
79 		protectedTests->addChild(bufferTestGroup.release());
80 	}
81 
82 	// Storage buffer test case group
83 	{
84 		de::MovePtr<tcu::TestCaseGroup> ssboTestGroup (new tcu::TestCaseGroup(testCtx, "ssbo", "Storage Buffer Tests"));
85 		ssboTestGroup->addChild(createReadStorageBufferTests(testCtx));
86 		ssboTestGroup->addChild(createWriteStorageBufferTests(testCtx));
87 		ssboTestGroup->addChild(createAtomicStorageBufferTests(testCtx));
88 		protectedTests->addChild(ssboTestGroup.release());
89 	}
90 
91 	{
92 		de::MovePtr<tcu::TestCaseGroup> interactionTestGroup (new tcu::TestCaseGroup(testCtx, "interaction", "Various tests which interacts with other extensions"));
93 		interactionTestGroup->addChild(createSwapchainTests(testCtx));
94 		interactionTestGroup->addChild(createYCbCrConversionTests(testCtx));
95 		protectedTests->addChild(interactionTestGroup.release());
96 	}
97 
98 	protectedTests->addChild(createWorkgroupStorageTests(testCtx));
99 
100 	return protectedTests.release();
101 
102 }
103 
104 } // ProtectedMem
105 } // vkt
106