X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=external%2Fopenglcts%2Fmodules%2Fgles32%2Fes32cTestPackage.cpp;h=72570afe30544b73f77ad05a1b48f77bee2fad9e;hb=6c3fca93367fd97c4eb9e7b2a4e642c1284e3ff9;hp=5621973215851eb829d7adfa4a77cc3cc7cd276c;hpb=86f4e5c1690e50db483b020aa73b00217054258a;p=platform%2Fupstream%2FVK-GL-CTS.git diff --git a/external/openglcts/modules/gles32/es32cTestPackage.cpp b/external/openglcts/modules/gles32/es32cTestPackage.cpp index 5621973..72570af 100644 --- a/external/openglcts/modules/gles32/es32cTestPackage.cpp +++ b/external/openglcts/modules/gles32/es32cTestPackage.cpp @@ -23,14 +23,19 @@ */ /*-------------------------------------------------------------------*/ #include "es32cTestPackage.hpp" -#include "es32cRobustBufferAccessBehaviorTests.hpp" +#include "es32cCopyImageTests.hpp" #include "esextcTestPackage.hpp" +#include "glcAggressiveShaderOptimizationsTests.hpp" #include "glcFragDepthTests.hpp" #include "glcInfoTests.hpp" +#include "glcInternalformatTests.hpp" +#include "glcSeparableProgramsTransformFeedbackTests.hpp" +#include "glcShaderConstExprTests.hpp" #include "glcShaderIndexingTests.hpp" #include "glcShaderIntegerMixTests.hpp" #include "glcShaderLibrary.hpp" #include "glcShaderLoopTests.hpp" +#include "glcShaderMacroTests.hpp" #include "glcShaderNegativeTests.hpp" #include "glcShaderStructTests.hpp" #include "glcShaderSwitchTests.hpp" @@ -143,6 +148,7 @@ void ES32TestPackage::init(void) tcu::TestCaseGroup* shadersGroup = new tcu::TestCaseGroup(getTestContext(), "shaders", ""); shadersGroup->addChild(new deqp::ShaderIntegerMixTests(getContext(), glu::GLSL_VERSION_320_ES)); shadersGroup->addChild(new deqp::ShaderNegativeTests(getContext(), glu::GLSL_VERSION_320_ES)); + shadersGroup->addChild(new glcts::AggressiveShaderOptimizationsTests(getContext())); addChild(shadersGroup); tcu::TestCaseGroup* coreGroup = new tcu::TestCaseGroup(getTestContext(), "core", ""); @@ -154,10 +160,12 @@ void ES32TestPackage::init(void) coreGroup->addChild(new glcts::TextureBorderClampTests(getContext(), extParams)); coreGroup->addChild(new glcts::TextureBufferTests(getContext(), extParams)); coreGroup->addChild(new glcts::DrawBuffersIndexedTests(getContext(), extParams)); + coreGroup->addChild(new glcts::ShaderConstExprTests(getContext())); + coreGroup->addChild(new glcts::ShaderMacroTests(getContext())); + coreGroup->addChild(new glcts::SeparableProgramsTransformFeedbackTests(getContext())); + coreGroup->addChild(new glcts::CopyImageTests(getContext())); + coreGroup->addChild(new glcts::InternalformatTests(getContext())); addChild(coreGroup); - tcu::TestCaseGroup* robustGroup = new tcu::TestCaseGroup(getTestContext(), "robust", ""); - robustGroup->addChild(new es32cts::RobustBufferAccessBehaviorTests(getContext())); - addChild(robustGroup); } catch (...) {