xref: /aosp_15_r20/external/deqp/modules/gles2/stress/es2sStressTests.cpp (revision 35238bce31c2a825756842865a792f8cf7f89930)
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 Stress tests.
22  *//*--------------------------------------------------------------------*/
23 
24 #include "es2sStressTests.hpp"
25 #include "es2sMemoryTests.hpp"
26 #include "es2sLongRunningTests.hpp"
27 #include "es2sSpecialFloatTests.hpp"
28 #include "es2sVertexArrayTests.hpp"
29 #include "es2sDrawTests.hpp"
30 
31 namespace deqp
32 {
33 namespace gles2
34 {
35 namespace Stress
36 {
37 
StressTests(Context & context)38 StressTests::StressTests(Context &context) : TestCaseGroup(context, "stress", "Stress tests")
39 {
40 }
41 
~StressTests(void)42 StressTests::~StressTests(void)
43 {
44 }
45 
init(void)46 void StressTests::init(void)
47 {
48     addChild(new MemoryTests(m_context));
49     addChild(new LongRunningTests(m_context));
50     addChild(new SpecialFloatTests(m_context));
51     addChild(new VertexArrayTests(m_context));
52     addChild(new DrawTests(m_context));
53 }
54 
55 } // namespace Stress
56 } // namespace gles2
57 } // namespace deqp
58