Searched refs:testCaseInfo (Results 1 – 10 of 10) sorted by relevance
/external/catch2/include/internal/ |
D | catch_list.cpp | 39 for( auto const& testCaseInfo : matchedTestCases ) { in listTests() local 40 Colour::Code colour = testCaseInfo.isHidden() in listTests() 45 Catch::cout() << Column( testCaseInfo.name ).initialIndent( 2 ).indent( 4 ) << "\n"; in listTests() 47 …Catch::cout() << Column( Catch::Detail::stringify( testCaseInfo.lineInfo ) ).indent(4) << std::end… in listTests() 48 std::string description = testCaseInfo.description; in listTests() 53 if( !testCaseInfo.tags.empty() ) in listTests() 54 Catch::cout() << Column( testCaseInfo.tagsAsString() ).indent( 6 ) << "\n"; in listTests() 68 for( auto const& testCaseInfo : matchedTestCases ) { in listTestsNamesOnly() local 70 if( startsWith( testCaseInfo.name, '#' ) ) in listTestsNamesOnly() 71 Catch::cout() << '"' << testCaseInfo.name << '"'; in listTestsNamesOnly() [all …]
|
D | catch_test_case_info.cpp | 100 void setTags( TestCaseInfo& testCaseInfo, std::vector<std::string> tags ) { in setTags() argument 103 testCaseInfo.lcaseTags.clear(); in setTags() 107 …testCaseInfo.properties = static_cast<TestCaseInfo::SpecialProperties>( testCaseInfo.properties | … in setTags() 108 testCaseInfo.lcaseTags.push_back( lcaseTag ); in setTags() 110 testCaseInfo.tags = std::move(tags); in setTags()
|
D | catch_run_context.cpp | 290 auto const& testCaseInfo = m_activeTestCase->getTestCaseInfo(); in handleFatalErrorCondition() local 291 SectionInfo testCaseSection(testCaseInfo.lineInfo, testCaseInfo.name); in handleFatalErrorCondition() 329 auto const& testCaseInfo = m_activeTestCase->getTestCaseInfo(); in runCurrentTest() local 330 SectionInfo testCaseSection(testCaseInfo.lineInfo, testCaseInfo.name); in runCurrentTest() 335 …m_lastAssertionInfo = { "TEST_CASE"_sr, testCaseInfo.lineInfo, StringRef(), ResultDisposition::Nor… in runCurrentTest()
|
D | catch_test_case_info.h | 44 friend void setTags( TestCaseInfo& testCaseInfo, std::vector<std::string> tags );
|
/external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/ |
D | vktSpvAsmFloatControlsTests.cpp | 2862 void specializeOperation(const OperationTestCaseInfo& testCaseInfo, 2916 void TestGroupBuilderBase::specializeOperation (const OperationTestCaseInfo& testCaseInfo, in specializeOperation() argument 2922 FloatType outFloatType = testCaseInfo.outFloatType; in specializeOperation() 2923 const Operation& operation = testCaseInfo.operation; in specializeOperation() 2953 if (testCaseInfo.argumentsFromInput) in specializeOperation() 2958 if (inFloatType == FP16 && testCaseInfo.testCase.fp16Without16BitStorage) in specializeOperation() 2967 const ValueId* inputArguments = testCaseInfo.testCase.input; in specializeOperation() 3163 void fillShaderSpec(const OperationTestCaseInfo& testCaseInfo, 3165 void fillShaderSpec(const SettingsTestCaseInfo& testCaseInfo, 3329 OperationTestCaseInfo testCaseInfo = in createOperationTests() local [all …]
|
/external/catch2/include/reporters/ |
D | catch_reporter_junit.h | 31 void testCaseStarting(TestCaseInfo const& testCaseInfo) override;
|
D | catch_reporter_junit.cpp | 90 void JunitReporter::testCaseStarting( TestCaseInfo const& testCaseInfo ) { in testCaseStarting() argument 91 m_okToFail = testCaseInfo.okToFail(); in testCaseStarting()
|
/external/bcc/tests/cc/ |
D | catch.hpp | 2828 friend void setTags( TestCaseInfo& testCaseInfo, std::set<std::string> const& tags ); 5312 TestCaseInfo const& testCaseInfo = it->getTestCaseInfo(); in listTests() local 5313 Colour::Code colour = testCaseInfo.isHidden() in listTests() 5318 Catch::cout() << Text( testCaseInfo.name, nameAttr ) << std::endl; in listTests() 5319 if( !testCaseInfo.tags.empty() ) in listTests() 5320 Catch::cout() << Text( testCaseInfo.tagsAsString, tagsAttr ) << std::endl; in listTests() 5340 TestCaseInfo const& testCaseInfo = it->getTestCaseInfo(); in listTestsNamesOnly() local 5341 Catch::cout() << testCaseInfo.name << std::endl; in listTestsNamesOnly() 6036 TestCaseInfo const& testCaseInfo = m_activeTestCase->getTestCaseInfo(); in handleFatalErrorCondition() local 6037 … SectionInfo testCaseSection( testCaseInfo.lineInfo, testCaseInfo.name, testCaseInfo.description ); in handleFatalErrorCondition() [all …]
|
/external/libabigail/tests/lib/ |
D | catch.hpp | 4780 friend void setTags( TestCaseInfo& testCaseInfo, std::vector<std::string> tags ); 6330 void testCaseStarting(TestCaseInfo const& testCaseInfo) override; 11203 for( auto const& testCaseInfo : matchedTestCases ) { in listTests() local 11204 Colour::Code colour = testCaseInfo.isHidden() in listTests() 11209 Catch::cout() << Column( testCaseInfo.name ).initialIndent( 2 ).indent( 4 ) << "\n"; in listTests() 11211 …Catch::cout() << Column( Catch::Detail::stringify( testCaseInfo.lineInfo ) ).indent(4) << std::end… in listTests() 11212 std::string description = testCaseInfo.description; in listTests() 11217 if( !testCaseInfo.tags.empty() ) in listTests() 11218 Catch::cout() << Column( testCaseInfo.tagsAsString() ).indent( 6 ) << "\n"; in listTests() 11232 for( auto const& testCaseInfo : matchedTestCases ) { in listTestsNamesOnly() local [all …]
|
/external/catch2/single_include/catch2/ |
D | catch.hpp | 4749 friend void setTags( TestCaseInfo& testCaseInfo, std::vector<std::string> tags ); 6296 void testCaseStarting(TestCaseInfo const& testCaseInfo) override; 11141 for( auto const& testCaseInfo : matchedTestCases ) { in listTests() local 11142 Colour::Code colour = testCaseInfo.isHidden() in listTests() 11147 Catch::cout() << Column( testCaseInfo.name ).initialIndent( 2 ).indent( 4 ) << "\n"; in listTests() 11149 …Catch::cout() << Column( Catch::Detail::stringify( testCaseInfo.lineInfo ) ).indent(4) << std::end… in listTests() 11150 std::string description = testCaseInfo.description; in listTests() 11155 if( !testCaseInfo.tags.empty() ) in listTests() 11156 Catch::cout() << Column( testCaseInfo.tagsAsString() ).indent( 6 ) << "\n"; in listTests() 11170 for( auto const& testCaseInfo : matchedTestCases ) { in listTestsNamesOnly() local [all …]
|