Home
last modified time | relevance | path

Searched refs:TestSpec (Results 1 – 25 of 37) sorted by relevance

12

/external/catch2/include/internal/
Dcatch_test_spec.cpp18 TestSpec::Pattern::~Pattern() = default;
19 TestSpec::NamePattern::~NamePattern() = default;
20 TestSpec::TagPattern::~TagPattern() = default;
21 TestSpec::ExcludedPattern::~ExcludedPattern() = default;
23 TestSpec::NamePattern::NamePattern( std::string const& name ) in NamePattern()
26 bool TestSpec::NamePattern::matches( TestCaseInfo const& testCase ) const { in matches()
30 TestSpec::TagPattern::TagPattern( std::string const& tag ) : m_tag( toLower( tag ) ) {} in TagPattern()
31 bool TestSpec::TagPattern::matches( TestCaseInfo const& testCase ) const { in matches()
37TestSpec::ExcludedPattern::ExcludedPattern( PatternPtr const& underlyingPattern ) : m_underlyingPa… in ExcludedPattern()
38 …bool TestSpec::ExcludedPattern::matches( TestCaseInfo const& testCase ) const { return !m_underlyi… in matches()
[all …]
Dcatch_test_spec_parser.cpp23 addPattern<TestSpec::NamePattern>(); in parse()
26 TestSpec TestSpecParser::testSpec() { in testSpec()
44 addPattern<TestSpec::NamePattern>(); in visitChar()
51 addPattern<TestSpec::NamePattern>(); in visitChar()
60 addPattern<TestSpec::NamePattern>(); in visitChar()
62 addPattern<TestSpec::TagPattern>(); in visitChar()
79 m_currentFilter = TestSpec::Filter(); in addFilter()
83 TestSpec parseTestSpec( std::string const& arg ) { in parseTestSpec()
Dcatch_test_spec_parser.h29 TestSpec::Filter m_currentFilter;
30 TestSpec m_testSpec;
37 TestSpec testSpec();
56 TestSpec::PatternPtr pattern = std::make_shared<T>( token ); in addPattern()
58 pattern = std::make_shared<TestSpec::ExcludedPattern>( pattern ); in addPattern()
67 TestSpec parseTestSpec( std::string const& arg );
Dcatch_interfaces_testcase.h15 class TestSpec; variable
31 bool matchTest( TestCase const& testCase, TestSpec const& testSpec, IConfig const& config );
32 …std::vector<TestCase> filterTests( std::vector<TestCase> const& testCases, TestSpec const& testSpe…
Dcatch_interfaces_config.h54 class TestSpec; variable
70 virtual TestSpec const& testSpec() const = 0;
Dcatch_test_case_registry_impl.h26 bool matchTest( TestCase const& testCase, TestSpec const& testSpec, IConfig const& config );
30 …std::vector<TestCase> filterTests( std::vector<TestCase> const& testCases, TestSpec const& testSpe…
Dcatch_list.cpp31 TestSpec testSpec = config.testSpec(); in listTests()
65 TestSpec testSpec = config.testSpec(); in listTestsNamesOnly()
94 TestSpec testSpec = config.testSpec(); in listTags()
Dcatch_config.hpp88 virtual TestSpec const& testSpec() const override;
116 TestSpec m_testSpec;
Dcatch_test_case_registry_impl.cpp39 bool matchTest( TestCase const& testCase, TestSpec const& testSpec, IConfig const& config ) { in matchTest()
54 …std::vector<TestCase> filterTests( std::vector<TestCase> const& testCases, TestSpec const& testSpe… in filterTests()
/external/catch2/projects/SelfTest/IntrospectiveTests/
DCmdLine.tests.cpp23 using Catch::TestSpec;
31 TestSpec spec;
38 TestSpec spec = parseTestSpec( "" );
45 TestSpec spec = parseTestSpec( "," );
52 TestSpec spec = parseTestSpec( "b" );
59 TestSpec spec = parseTestSpec( "\"b\"" );
66 TestSpec spec = parseTestSpec( "b" );
74 TestSpec spec = parseTestSpec( "*spaces" );
83 TestSpec spec = parseTestSpec( "long*" );
92 TestSpec spec = parseTestSpec( "*name*" );
[all …]
/external/deqp/modules/gles3/functional/
Des3fPixelBufferObjectTests.cpp60 struct TestSpec struct in deqp::gles3::Functional::__anon319157290111::ReadPixelsTest
78 ReadPixelsTest (Context& context, const TestSpec& spec);
94 TestSpec::FramebufferType m_framebuffeType;
106 ReadPixelsTest::ReadPixelsTest (Context& context, const TestSpec& spec) in ReadPixelsTest()
119 if (m_framebuffeType == TestSpec::FRAMEBUFFERTYPE_NATIVE) in ReadPixelsTest()
123 else if (m_framebuffeType == TestSpec::FRAMEBUFFERTYPE_RENDERBUFFER) in ReadPixelsTest()
159 if (m_framebuffeType == TestSpec::FRAMEBUFFERTYPE_RENDERBUFFER) in init()
208 if (m_framebuffeType == TestSpec::FRAMEBUFFERTYPE_NATIVE) in init()
210 else if (m_framebuffeType == TestSpec::FRAMEBUFFERTYPE_RENDERBUFFER) in init()
334 if (m_framebuffeType == TestSpec::FRAMEBUFFERTYPE_NATIVE) in clearColor()
[all …]
Des3fSamplerObjectTests.cpp62 gls::TextureSamplerTest::TestSpec simpleTestCases[] = { in init()
100 gls::MultiTextureSamplerTest::TestSpec multiTestCases[] = { in init()
145 gls::TextureSamplerTest::TestSpec simpleTestCases3D[] = { in init()
183 gls::MultiTextureSamplerTest::TestSpec multiTestCases3D[] = { in init()
228 gls::TextureSamplerTest::TestSpec simpleTestCasesCube[] = { in init()
266 gls::MultiTextureSamplerTest::TestSpec multiTestCasesCube[] = { in init()
/external/deqp/modules/egl/
DteglGLES2SharingTests.cpp80 struct TestSpec struct in deqp::egl::GLES2SharingTest
93 …haringTest (EglTestContext& eglTestCtx, const char* name , const char* desc, const TestSpec& spec);
100 TestSpec m_spec;
115 …SharingTest (EglTestContext& eglTestCtx, const char* name , const char* desc, const TestSpec& spec) in GLES2SharingTest()
297 …stContext& eglTestCtx, const char* name, const char* desc, const GLES2SharingTest::TestSpec& spec);
309 …estContext& eglTestCtx, const char* name, const char* desc, const GLES2SharingTest::TestSpec& spec) in GLES2BufferSharingTest()
470 …stContext& eglTestCtx, const char* name, const char* desc, const GLES2SharingTest::TestSpec& spec);
482 …estContext& eglTestCtx, const char* name, const char* desc, const GLES2SharingTest::TestSpec& spec) in GLES2TextureSharingTest()
633 …stContext& eglTestCtx, const char* name, const char* desc, const GLES2SharingTest::TestSpec& spec);
644 …estContext& eglTestCtx, const char* name, const char* desc, const GLES2SharingTest::TestSpec& spec) in GLES2ProgramSharingTest()
[all …]
DteglImageFormatTests.cpp125 struct TestSpec struct
864 ImageFormatCase (EglTestContext& eglTestCtx, const TestSpec& spec);
875 const TestSpec m_spec;
906 ImageFormatCase::ImageFormatCase (EglTestContext& eglTestCtx, const TestSpec& spec) in ImageFormatCase()
955 const TestSpec::Operation& op = m_spec.operations[operationNdx]; in checkExtensions()
985 case TestSpec::API_GLES2: in init()
1033 const TestSpec::Operation& op = m_spec.operations[m_curIter++]; in iterate()
1277 TestSpec spec; in init()
1284 spec.contexts.push_back(TestSpec::API_GLES2); in init()
1285 spec.operations.push_back(TestSpec::Operation(0, *createAction.action)); in init()
[all …]
/external/deqp/external/vulkancts/modules/vulkan/draw/
DvktDrawSimpleTest.cpp50 typedef TestSpecBase TestSpec; typedef in vkt::Draw::__anon7a6520090111::SimpleDraw
51 SimpleDraw (Context &context, TestSpec testSpec);
58 typedef TestSpec TestSpec; typedef in vkt::Draw::__anon7a6520090111::SimpleDrawInstanced
59 SimpleDrawInstanced (Context &context, TestSpec testSpec);
63 SimpleDraw::SimpleDraw (Context &context, TestSpec testSpec) in SimpleDraw()
198 SimpleDrawInstanced::SimpleDrawInstanced (Context &context, TestSpec testSpec) in SimpleDrawInstanced()
305 SimpleDraw::TestSpec testSpec; in init()
315 SimpleDrawInstanced::TestSpec testSpec; in init()
DvktDrawIndexedTest.cpp55 typedef TestSpecBase TestSpec; typedef in vkt::Draw::__anon4e44fc600211::DrawIndexed
57 DrawIndexed (Context &context, TestSpec testSpec);
67 DrawInstancedIndexed (Context &context, TestSpec testSpec);
71 DrawIndexed::DrawIndexed (Context &context, TestSpec testSpec) in DrawIndexed()
212 DrawInstancedIndexed::DrawInstancedIndexed (Context &context, TestSpec testSpec) in DrawInstancedIndexed()
333 DrawIndexed::TestSpec testSpec; in init()
343 DrawInstancedIndexed::TestSpec testSpec; in init()
DvktDrawShaderDrawParametersTests.cpp83 typedef FlagsTestSpec TestSpec; typedef in vkt::Draw::__anonf4eaa00b0111::DrawTest
84 DrawTest (Context &context, TestSpec testSpec);
104 DrawTest::DrawTest (Context &context, TestSpec testSpec) in DrawTest()
352 void addDrawCase (tcu::TestCaseGroup* group, const DrawTest::TestSpec testSpec, const TestFlags fla… in addDrawCase()
375 DrawTest::TestSpec testSpec; in init()
389 DrawTest::TestSpec testSpec; in init()
405 DrawTest::TestSpec testSpec; in init()
DvktDrawTestCaseUtil.hpp72 …t& testCtx, const std::string& name, const std::string& desc, typename Instance::TestSpec testSpec) in InstanceFactory()
93 const typename Instance::TestSpec m_testSpec;
DvktDrawIndirectTest.cpp88 typedef DrawTypedTestSpec TestSpec; typedef in vkt::Draw::__anond6a1db510111::IndirectDraw
90 IndirectDraw (Context &context, TestSpec testSpec);
136 IndirectDrawInstanced (Context &context, TestSpec testSpec);
240 IndirectDraw::IndirectDraw (Context &context, TestSpec testSpec) in IndirectDraw()
606 IndirectDrawInstanced<FirstInstanceSupport>::IndirectDrawInstanced (Context &context, TestSpec test… in IndirectDrawInstanced()
956 IndirectDraw::TestSpec testSpec; in init()
978 IndirectDraw::TestSpec testSpec; in init()
1004 IndirectDrawInstanced<FirstInstanceNotSupported>::TestSpec testSpec; in init()
1027 IndirectDrawInstanced<FirstInstanceSupported>::TestSpec testSpec; in init()
/external/pdfium/testing/tools/coverage/
Dcoverage_report.py37 TestSpec = namedtuple('TestSpec', 'binary, use_test_runner') variable
41 'pdfium_unittests': TestSpec('pdfium_unittests', False),
42 'pdfium_embeddertests': TestSpec('pdfium_embeddertests', False),
43 'corpus_tests': TestSpec('run_corpus_tests.py', True),
44 'javascript_tests': TestSpec('run_javascript_tests.py', True),
45 'pixel_tests': TestSpec('run_pixel_tests.py', True),
161 coverage_tests[name] = TestSpec(binary_path, test_spec.use_test_runner)
/external/deqp/modules/glshared/
DglsSamplerObjectTest.hpp54 struct TestSpec struct in deqp::gls::TextureSamplerTest
63 …TextureSamplerTest (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const TestSpec& spec…
112 struct TestSpec struct in deqp::gls::MultiTextureSamplerTest
122 …xtureSamplerTest (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const TestSpec& spec);
/external/deqp/modules/gles31/functional/
Des31fAtomicCounterTests.cpp87 struct TestSpec struct in deqp::gles31::Functional::__anona40c26350111::AtomicCounterTest
89 TestSpec (void) in TestSpec() argument
109 …icCounterTest (Context& context, const char* name, const char* description, const TestSpec& spec);
117 const TestSpec m_spec;
124 static string generateShaderSource (const TestSpec& spec);
128 …deUint32>& increments, const vector<deUint32>& decrements, int initialValue, const TestSpec& spec);
154 …omicCounterTest (Context& context, const char* name, const char* description, const TestSpec& spec) in AtomicCounterTest()
172 string AtomicCounterTest::generateShaderSource (const TestSpec& spec) in generateShaderSource()
712 …<deUint32>& increments, const vector<deUint32>& decrements, int initialValue, const TestSpec& spec) in checkPath()
1050 string specToTestName (const AtomicCounterTest::TestSpec& spec) in specToTestName()
[all …]
/external/deqp/modules/gles31/stress/
Des31sVertexAttributeBindingTests.cpp230 struct TestSpec struct in deqp::gles31::Stress::__anon8349ba230111::SingleBindingCase
246 static TestSpec genTestSpec (int flags);
254 const TestSpec m_spec;
369 SingleBindingCase::TestSpec SingleBindingCase::genTestSpec (int flags) in genTestSpec()
382 TestSpec spec; in genTestSpec()
/external/deqp/modules/gles2/performance/
Des2pDrawCallBatchingTests.cpp69 struct TestSpec struct in deqp::gles2::Performance::__anon405bb0470111::DrawCallBatchingTest
85 …llBatchingTest (Context& context, const char* name, const char* description, const TestSpec& spec);
111 TestSpec m_spec;
149 …allBatchingTest (Context& context, const char* name, const char* description, const TestSpec& spec) in DrawCallBatchingTest()
931 string specToName (const DrawCallBatchingTest::TestSpec& spec) in specToName()
955 string specToDescrpition (const DrawCallBatchingTest::TestSpec& spec) in specToDescrpition()
1056 DrawCallBatchingTest::TestSpec spec; in init()
/external/deqp/external/vulkancts/modules/vulkan/fragment_ops/
DvktFragmentOperationsScissorTests.cpp499 struct TestSpec in createTestsInGroup() struct
516 const TestSpec cases[] = in createTestsInGroup()
533 const TestSpec cases[] = in createTestsInGroup()
551 const TestSpec cases[] = in createTestsInGroup()

12