Home
last modified time | relevance | path

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

12

/external/catch2/include/internal/
Dcatch_test_spec.cpp19 TestSpec::Pattern::Pattern( std::string const& name ) in Pattern()
23 TestSpec::Pattern::~Pattern() = default;
25 std::string const& TestSpec::Pattern::name() const { in name()
30 TestSpec::NamePattern::NamePattern( std::string const& name, std::string const& filterString ) in NamePattern()
35 bool TestSpec::NamePattern::matches( TestCaseInfo const& testCase ) const { in matches()
40 TestSpec::TagPattern::TagPattern( std::string const& tag, std::string const& filterString ) in TagPattern()
45 bool TestSpec::TagPattern::matches( TestCaseInfo const& testCase ) const { in matches()
52 TestSpec::ExcludedPattern::ExcludedPattern( PatternPtr const& underlyingPattern ) in ExcludedPattern()
57 bool TestSpec::ExcludedPattern::matches( TestCaseInfo const& testCase ) const { in matches()
62 bool TestSpec::Filter::matches( TestCaseInfo const& testCase ) const { in matches()
[all …]
Dcatch_test_spec_parser.cpp33 TestSpec TestSpecParser::testSpec() { in testSpec()
152 m_currentFilter = TestSpec::Filter(); in addFilter()
197TestSpec::PatternPtr pattern = std::make_shared<TestSpec::NamePattern>(token, m_substring); in addNamePattern()
199 pattern = std::make_shared<TestSpec::ExcludedPattern>(pattern); in addNamePattern()
215TestSpec::PatternPtr pattern = std::make_shared<TestSpec::TagPattern>(".", m_substring); in addTagPattern()
217 pattern = std::make_shared<TestSpec::ExcludedPattern>(pattern); in addTagPattern()
222TestSpec::PatternPtr pattern = std::make_shared<TestSpec::TagPattern>(token, m_substring); in addTagPattern()
225 pattern = std::make_shared<TestSpec::ExcludedPattern>(pattern); in addTagPattern()
234 TestSpec parseTestSpec( std::string const& arg ) { in parseTestSpec()
Dcatch_test_spec_parser.h33 TestSpec::Filter m_currentFilter;
34 TestSpec m_testSpec;
41 TestSpec testSpec();
71 TestSpec parseTestSpec( std::string const& arg );
Dcatch_interfaces_testcase.h15 class TestSpec; variable
32 bool matchTest( TestCase const& testCase, TestSpec const& testSpec, IConfig const& config );
33 …std::vector<TestCase> filterTests( std::vector<TestCase> const& testCases, TestSpec const& testSpe…
Dcatch_test_case_registry_impl.h28 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.h56 class TestSpec; variable
72 virtual TestSpec const& testSpec() const = 0;
Dcatch_list.cpp31 TestSpec const& testSpec = config.testSpec(); in listTests()
65 TestSpec const& testSpec = config.testSpec(); in listTestsNamesOnly()
103 TestSpec const& testSpec = config.testSpec(); in listTags()
Dcatch_config.hpp93 TestSpec const& testSpec() const override;
125 TestSpec m_testSpec;
Dcatch_test_case_registry_impl.cpp45 bool matchTest( TestCase const& testCase, TestSpec const& testSpec, IConfig const& config ) { in matchTest()
60 …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::__anon93b46c700111::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/pdfium/testing/tools/coverage/
Dcoverage_report.py32 TestSpec = namedtuple('TestSpec', 'binary, use_test_runner, opt_args') variable
37 TestSpec('pdfium_unittests', False, []),
39 TestSpec('pdfium_embeddertests', False, []),
41 TestSpec('run_corpus_tests.py', True, []),
43 TestSpec('run_corpus_tests.py', True, ['--disable-javascript']),
45 TestSpec('run_javascript_tests.py', True, []),
47 TestSpec('run_javascript_tests.py', True, ['--disable-javascript']),
49 TestSpec('run_pixel_tests.py', True, []),
51 TestSpec('run_pixel_tests.py', True, ['--disable-javascript']),
162 coverage_tests[name] = TestSpec(binary_path, test_spec.use_test_runner,
/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
873 ImageFormatCase (EglTestContext& eglTestCtx, const TestSpec& spec);
884 const TestSpec m_spec;
915 ImageFormatCase::ImageFormatCase (EglTestContext& eglTestCtx, const TestSpec& spec) in ImageFormatCase()
964 const TestSpec::Operation& op = m_spec.operations[operationNdx]; in checkExtensions()
994 case TestSpec::API_GLES2: in init()
1044 const TestSpec::Operation& op = m_spec.operations[m_curIter++]; in iterate()
1310 TestSpec spec; in init()
1317 spec.contexts.push_back(TestSpec::API_GLES2); in init()
1318 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::__anon4c5b99b00111::SimpleDraw
51 SimpleDraw (Context &context, TestSpec testSpec);
58 typedef TestSpec TestSpec; typedef in vkt::Draw::__anon4c5b99b00111::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()
DvktDrawTestCaseUtil.hpp57 …t& testCtx, const std::string& name, const std::string& desc, typename Instance::TestSpec testSpec) in InstanceFactory()
64 …x, const std::string& name, const std::string& desc, typename Instance::TestSpec testSpec, const S… in InstanceFactory()
91 const typename Instance::TestSpec m_testSpec;
DvktDrawIndexedTest.cpp55 typedef TestSpecBase TestSpec; typedef in vkt::Draw::__anon5f0aaae70211::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::__anon21b3aed20111::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()
DvktDrawConcurrentTests.cpp63 typedef TestSpecBase TestSpec; typedef in vkt::Draw::__anonc5a999dc0111::ConcurrentDraw
64 ConcurrentDraw (Context &context, TestSpec testSpec);
68 ConcurrentDraw::ConcurrentDraw (Context &context, TestSpec testSpec) in ConcurrentDraw()
393 ConcurrentDraw::TestSpec testSpec; in init()
DvktDrawIndirectTest.cpp97 typedef DrawTypedTestSpec TestSpec; typedef in vkt::Draw::__anon001d5ab80111::IndirectDraw
99 IndirectDraw (Context &context, TestSpec testSpec);
145 IndirectDrawInstanced (Context &context, TestSpec testSpec);
249 IndirectDraw::IndirectDraw (Context &context, TestSpec testSpec) in IndirectDraw()
646 IndirectDrawInstanced<FirstInstanceSupport>::IndirectDrawInstanced (Context &context, TestSpec test… in IndirectDrawInstanced()
1032 IndirectDraw::TestSpec testSpec; in init()
1062 IndirectDraw::TestSpec testSpec; in init()
1097 IndirectDrawInstanced<FirstInstanceNotSupported>::TestSpec testSpec; in init()
1128 IndirectDrawInstanced<FirstInstanceSupported>::TestSpec testSpec; in init()
/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::__anon8a0b3dbc0111::AtomicCounterTest
89 TestSpec (void) in TestSpec() function
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/toolchain-utils/
Drun_tests_for.py38 TestSpec = collections.namedtuple('TestSpec', ['directory', 'command']) variable
110 return TestSpec(directory=test_directory, command=command)
229 TestSpec(directory=d, command=command) for d in sorted(dirs_with_gofiles)
/external/deqp/modules/gles31/stress/
Des31sVertexAttributeBindingTests.cpp230 struct TestSpec struct in deqp::gles31::Stress::__anone2379e0a0111::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()

12