Home | History | Annotate | Download | only in functional

Lines Matching refs:TestCaseGroup

141 class AttributeGroup : public TestCaseGroup
157 : TestCaseGroup (context, name, descr)
383 class IndexGroup : public TestCaseGroup
396 : TestCaseGroup (context, name, descr)
434 tcu::TestCaseGroup* userPtrGroup = new tcu::TestCaseGroup(m_testCtx, "user_ptr", "user pointer");
435 tcu::TestCaseGroup* unalignedUserPtrGroup = new tcu::TestCaseGroup(m_testCtx, "unaligned_user_ptr", "unaligned user pointer");
436 tcu::TestCaseGroup* bufferGroup = new tcu::TestCaseGroup(m_testCtx, "buffer", "buffer");
437 tcu::TestCaseGroup* unalignedBufferGroup = new tcu::TestCaseGroup(m_testCtx, "unaligned_buffer", "unaligned buffer");
449 tcu::TestCaseGroup* group = (indexTest.storage == gls::DrawTestSpec::STORAGE_USER) ? ((indexTest.aligned) ? (userPtrGroup) : (unalignedUserPtrGroup)) : ((indexTest.aligned) ? (bufferGroup) : (unalignedBufferGroup));
472 class FirstGroup : public TestCaseGroup
485 : TestCaseGroup (context, name, descr)
518 class MethodGroup : public TestCaseGroup
531 : TestCaseGroup (context, name, descr)
828 class InstancingGroup : public TestCaseGroup
838 : TestCaseGroup (context, name, descr)
876 class RandomGroup : public TestCaseGroup
898 : TestCaseGroup (context, name, descr)
1126 : TestCaseGroup(context, "draw", "Drawing tests")