HomeSort by relevance Sort by last modified time
    Searched refs:TestSpec (Results 1 - 25 of 37) sorted by null

1 2

  /external/catch2/include/internal/
catch_test_spec.cpp 18 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 )
26 bool TestSpec::NamePattern::matches( TestCaseInfo const& testCase ) const {
30 TestSpec::TagPattern::TagPattern( std::string const& tag ) : m_tag( toLower( tag ) ) {}
31 bool TestSpec::TagPattern::matches( TestCaseInfo const& testCase ) const {
37 TestSpec::ExcludedPattern::ExcludedPattern( PatternPtr const& underlyingPattern ) : m_underlyingPattern( underlyingPattern ) {}
38 bool TestSpec::ExcludedPattern::matches( TestCaseInfo const& testCase ) const { return !m_underlyingPattern->mat (…)
    [all...]
catch_interfaces_testcase.h 15 class TestSpec;
31 bool matchTest( TestCase const& testCase, TestSpec const& testSpec, IConfig const& config );
32 std::vector<TestCase> filterTests( std::vector<TestCase> const& testCases, TestSpec const& testSpec, IConfig const& config );
catch_test_spec_parser.cpp 23 addPattern<TestSpec::NamePattern>();
26 TestSpec TestSpecParser::testSpec() {
44 addPattern<TestSpec::NamePattern>();
51 addPattern<TestSpec::NamePattern>();
60 addPattern<TestSpec::NamePattern>();
62 addPattern<TestSpec::TagPattern>();
79 m_currentFilter = TestSpec::Filter();
83 TestSpec parseTestSpec( std::string const& arg ) {
84 return TestSpecParser( ITagAliasRegistry::get() ).parse( arg ).testSpec();
    [all...]
catch_test_spec_parser.h 29 TestSpec::Filter m_currentFilter;
30 TestSpec m_testSpec;
37 TestSpec testSpec();
56 TestSpec::PatternPtr pattern = std::make_shared<T>( token );
58 pattern = std::make_shared<TestSpec::ExcludedPattern>( pattern );
67 TestSpec parseTestSpec( std::string const& arg );
catch_interfaces_config.h 54 class TestSpec;
70 virtual TestSpec const& testSpec() const = 0;
catch_test_case_registry_impl.h 26 bool matchTest( TestCase const& testCase, TestSpec const& testSpec, IConfig const& config );
30 std::vector<TestCase> filterTests( std::vector<TestCase> const& testCases, TestSpec const& testSpec, IConfig const& config );
catch_config.hpp 88 virtual TestSpec const& testSpec() const override;
116 TestSpec m_testSpec;
catch_test_case_registry_impl.cpp 39 bool matchTest( TestCase const& testCase, TestSpec const& testSpec, IConfig const& config ) {
40 return testSpec.matches( testCase ) && ( config.allowThrows() || !testCase.throws() );
54 std::vector<TestCase> filterTests( std::vector<TestCase> const& testCases, TestSpec const& testSpec, IConfig const& config ) {
58 if( matchTest( testCase, testSpec, config ) )
catch_test_spec.h 25 class TestSpec {
catch_list.cpp 31 TestSpec testSpec = config.testSpec();
38 auto matchedTestCases = filterTests( getAllTestCasesSorted( config ), testSpec, config );
65 TestSpec testSpec = config.testSpec();
67 std::vector<TestCase> matchedTestCases = filterTests( getAllTestCasesSorted( config ), testSpec, config );
94 TestSpec testSpec = config.testSpec()
    [all...]
catch_config.cpp 27 m_testSpec = parser.testSpec();
45 TestSpec const& Config::testSpec() const { return m_testSpec; }
  /external/catch2/projects/SelfTest/IntrospectiveTests/
CmdLine.tests.cpp 23 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/external/vulkancts/modules/vulkan/draw/
vktDrawTestCaseUtil.hpp 72 InstanceFactory (tcu::TestContext& testCtx, const std::string& name, const std::string& desc, typename Instance::TestSpec testSpec)
74 , m_testSpec (testSpec)
93 const typename Instance::TestSpec m_testSpec;
vktDrawSimpleTest.cpp 50 typedef TestSpecBase TestSpec;
51 SimpleDraw (Context &context, TestSpec testSpec);
58 typedef TestSpec TestSpec;
59 SimpleDrawInstanced (Context &context, TestSpec testSpec);
63 SimpleDraw::SimpleDraw (Context &context, TestSpec testSpec)
64 : DrawTestsBaseClass(context, testSpec.shaders[glu::SHADERTYPE_VERTEX], testSpec.shaders[glu::SHADERTYPE_FRAGMENT], testSpec.topology
    [all...]
vktDrawIndexedTest.cpp 55 typedef TestSpecBase TestSpec;
57 DrawIndexed (Context &context, TestSpec testSpec);
67 DrawInstancedIndexed (Context &context, TestSpec testSpec);
71 DrawIndexed::DrawIndexed (Context &context, TestSpec testSpec)
72 : DrawTestsBaseClass(context, testSpec.shaders[glu::SHADERTYPE_VERTEX], testSpec.shaders[glu::SHADERTYPE_FRAGMENT], testSpec.topology
    [all...]
vktDrawShaderDrawParametersTests.cpp 83 typedef FlagsTestSpec TestSpec;
84 DrawTest (Context &context, TestSpec testSpec);
104 DrawTest::DrawTest (Context &context, TestSpec testSpec)
105 : DrawTestsBaseClass(context, testSpec.shaders[glu::SHADERTYPE_VERTEX], testSpec.shaders[glu::SHADERTYPE_FRAGMENT], testSpec.topology)
106 , m_flags (testSpec.flags)
352 void addDrawCase (tcu::TestCaseGroup* group, const DrawTest::TestSpec testSpec, const TestFlags flags
    [all...]
  /external/deqp/modules/gles3/functional/
es3fPixelBufferObjectTests.cpp 60 struct TestSpec
78 ReadPixelsTest (Context& context, const TestSpec& spec);
94 TestSpec::FramebufferType m_framebuffeType;
106 ReadPixelsTest::ReadPixelsTest (Context& context, const TestSpec& spec)
119 if (m_framebuffeType == TestSpec::FRAMEBUFFERTYPE_NATIVE)
123 else if (m_framebuffeType == TestSpec::FRAMEBUFFERTYPE_RENDERBUFFER)
159 if (m_framebuffeType == TestSpec::FRAMEBUFFERTYPE_RENDERBUFFER)
208 if (m_framebuffeType == TestSpec::FRAMEBUFFERTYPE_NATIVE)
210 else if (m_framebuffeType == TestSpec::FRAMEBUFFERTYPE_RENDERBUFFER)
334 if (m_framebuffeType == TestSpec::FRAMEBUFFERTYPE_NATIVE
    [all...]
es3fSamplerObjectTests.cpp 62 gls::TextureSamplerTest::TestSpec simpleTestCases[] = {
100 gls::MultiTextureSamplerTest::TestSpec multiTestCases[] = {
145 gls::TextureSamplerTest::TestSpec simpleTestCases3D[] = {
183 gls::MultiTextureSamplerTest::TestSpec multiTestCases3D[] = {
228 gls::TextureSamplerTest::TestSpec simpleTestCasesCube[] = {
266 gls::MultiTextureSamplerTest::TestSpec multiTestCasesCube[] = {
  /external/deqp/modules/glshared/
glsSamplerObjectTest.hpp 54 struct TestSpec
63 TextureSamplerTest (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const TestSpec& spec);
112 struct TestSpec
122 MultiTextureSamplerTest (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const TestSpec& spec);
  /external/pdfium/testing/tools/coverage/
coverage_report.py 37 TestSpec = namedtuple('TestSpec', 'binary, use_test_runner')
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/egl/
teglGLES2SharingTests.cpp 80 struct TestSpec
93 GLES2SharingTest (EglTestContext& eglTestCtx, const char* name , const char* desc, const TestSpec& spec);
100 TestSpec m_spec;
115 GLES2SharingTest::GLES2SharingTest (EglTestContext& eglTestCtx, const char* name , const char* desc, const TestSpec& spec)
297 GLES2BufferSharingTest (EglTestContext& eglTestCtx, const char* name, const char* desc, const GLES2SharingTest::TestSpec& spec);
309 GLES2BufferSharingTest::GLES2BufferSharingTest (EglTestContext& eglTestCtx, const char* name, const char* desc, const GLES2SharingTest::TestSpec& spec)
470 GLES2TextureSharingTest (EglTestContext& eglTestCtx, const char* name, const char* desc, const GLES2SharingTest::TestSpec& spec);
482 GLES2TextureSharingTest::GLES2TextureSharingTest (EglTestContext& eglTestCtx, const char* name, const char* desc, const GLES2SharingTest::TestSpec& spec)
633 GLES2ProgramSharingTest (EglTestContext& eglTestCtx, const char* name, const char* desc, const GLES2SharingTest::TestSpec& spec);
644 GLES2ProgramSharingTest::GLES2ProgramSharingTest (EglTestContext& eglTestCtx, const char* name, const char* desc, const GLES2SharingTest::TestSpec& spec
    [all...]
teglImageFormatTests.cpp 125 struct TestSpec
864 ImageFormatCase (EglTestContext& eglTestCtx, const TestSpec& spec);
875 const TestSpec m_spec;
906 ImageFormatCase::ImageFormatCase (EglTestContext& eglTestCtx, const TestSpec& spec)
    [all...]
  /external/deqp/modules/gles31/functional/
es31fAtomicCounterTests.cpp 87 struct TestSpec
89 TestSpec (void)
109 AtomicCounterTest (Context& context, const char* name, const char* description, const TestSpec& spec);
117 const TestSpec m_spec;
124 static string generateShaderSource (const TestSpec& spec);
128 static bool checkPath (const vector<deUint32>& increments, const vector<deUint32>& decrements, int initialValue, const TestSpec& spec);
154 AtomicCounterTest::AtomicCounterTest (Context& context, const char* name, const char* description, const TestSpec& spec)
172 string AtomicCounterTest::generateShaderSource (const TestSpec& spec)
712 bool AtomicCounterTest::checkPath (const vector<deUint32>& increments, const vector<deUint32>& decrements, int initialValue, const TestSpec& spec)
    [all...]
  /external/libese/libese/tests/
bitspec_unittests.cpp 24 struct TestSpec {
40 const struct TestSpec kTestSpec = {
  /external/deqp/modules/gles31/stress/
es31sVertexAttributeBindingTests.cpp 230 struct TestSpec
246 static TestSpec genTestSpec (int flags);
254 const TestSpec m_spec;
369 SingleBindingCase::TestSpec SingleBindingCase::genTestSpec (int flags)
382 TestSpec spec;

Completed in 2193 milliseconds

1 2