am db0c176d: am 8af07798: am 79c79d54: Merge "Remove broken line interpolation tests...
[platform/upstream/VK-GL-CTS.git] / modules / internal / ditTestPackage.cpp
1 /*-------------------------------------------------------------------------
2  * drawElements Quality Program OpenGL ES 2.0 Module
3  * -------------------------------------------------
4  *
5  * Copyright 2014 The Android Open Source Project
6  *
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
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
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.
18  *
19  *//*!
20  * \file
21  * \brief drawElements Internal Test Package
22  *//*--------------------------------------------------------------------*/
23
24 #include "ditTestPackage.hpp"
25 #include "ditBuildInfoTests.hpp"
26 #include "ditDelibsTests.hpp"
27 #include "ditFrameworkTests.hpp"
28 #include "ditImageIOTests.hpp"
29 #include "ditImageCompareTests.hpp"
30 #include "ditTestLogTests.hpp"
31 #include "ditSeedBuilderTests.hpp"
32
33 namespace dit
34 {
35
36 class DeqpTests : public tcu::TestCaseGroup
37 {
38 public:
39         DeqpTests (tcu::TestContext& testCtx)
40                 : tcu::TestCaseGroup(testCtx, "deqp", "dEQP Test Framework Self-tests")
41         {
42         }
43
44         void init (void)
45         {
46                 addChild(new TestLogTests               (m_testCtx));
47                 addChild(new ImageIOTests               (m_testCtx));
48                 addChild(new ImageCompareTests  (m_testCtx));
49                 addChild(createSeedBuilderTests (m_testCtx));
50         }
51 };
52
53 TestPackage::TestPackage (tcu::TestContext& testCtx)
54         : tcu::TestPackage      (testCtx, "dE-IT", "drawElements Internal Tests")
55         , m_wrapper                     (testCtx)
56         , m_archive                     (testCtx.getRootArchive(), "internal/")
57 {
58 }
59
60 TestPackage::~TestPackage (void)
61 {
62 }
63
64 void TestPackage::init (void)
65 {
66         addChild(new BuildInfoTests     (m_testCtx));
67         addChild(new DelibsTests        (m_testCtx));
68         addChild(new FrameworkTests     (m_testCtx));
69         addChild(new DeqpTests          (m_testCtx));
70 }
71
72 void TestPackage::deinit (void)
73 {
74         TestNode::deinit();
75 }
76
77 } // dit