Searched refs:testCaseInfo (Results 1 – 9 of 9) 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 | 94 void setTags( TestCaseInfo& testCaseInfo, std::vector<std::string> tags ) { in setTags() argument 97 testCaseInfo.lcaseTags.clear(); in setTags() 101 …testCaseInfo.properties = static_cast<TestCaseInfo::SpecialProperties>( testCaseInfo.properties | … in setTags() 102 testCaseInfo.lcaseTags.push_back( lcaseTag ); in setTags() 104 testCaseInfo.tags = std::move(tags); in setTags()
|
D | catch_run_context.cpp | 281 auto const& testCaseInfo = m_activeTestCase->getTestCaseInfo(); in handleFatalErrorCondition() local 282 SectionInfo testCaseSection(testCaseInfo.lineInfo, testCaseInfo.name); in handleFatalErrorCondition() 320 auto const& testCaseInfo = m_activeTestCase->getTestCaseInfo(); in runCurrentTest() local 321 SectionInfo testCaseSection(testCaseInfo.lineInfo, testCaseInfo.name); in runCurrentTest() 326 …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 | 2169 void specializeOperation(const TestCaseInfo& testCaseInfo, 2223 void TestGroupBuilderBase::specializeOperation(const TestCaseInfo& testCaseInfo, in specializeOperation() argument 2229 FloatType outFloatType = testCaseInfo.outFloatType; in specializeOperation() 2230 const Operation& operation = testCaseInfo.operation; in specializeOperation() 2258 if (testCaseInfo.argumentsFromInput) in specializeOperation() 2269 const ValueId* inputArguments = testCaseInfo.testCase.input; in specializeOperation() 2373 void fillShaderSpec(const TestCaseInfo& testCaseInfo, 2475 TestCaseInfo testCaseInfo = in createTests() local 2486 fillShaderSpec(testCaseInfo, csSpec); in createTests() 2488 string testName = replace(testCase.baseName, "op", testCaseInfo.operation.name); in createTests() [all …]
|
/external/catch2/include/reporters/ |
D | catch_reporter_junit.cpp | 96 void JunitReporter::testCaseStarting( TestCaseInfo const& testCaseInfo ) { in testCaseStarting() argument 97 m_okToFail = testCaseInfo.okToFail(); in testCaseStarting()
|
D | catch_reporter_junit.h | 31 void testCaseStarting(TestCaseInfo const& testCaseInfo) override;
|
/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/catch2/single_include/catch2/ |
D | catch.hpp | 4191 friend void setTags( TestCaseInfo& testCaseInfo, std::vector<std::string> tags ); 5670 void testCaseStarting(TestCaseInfo const& testCaseInfo) override; 9108 for( auto const& testCaseInfo : matchedTestCases ) { in listTests() local 9109 Colour::Code colour = testCaseInfo.isHidden() in listTests() 9114 Catch::cout() << Column( testCaseInfo.name ).initialIndent( 2 ).indent( 4 ) << "\n"; in listTests() 9116 …Catch::cout() << Column( Catch::Detail::stringify( testCaseInfo.lineInfo ) ).indent(4) << std::end… in listTests() 9117 std::string description = testCaseInfo.description; in listTests() 9122 if( !testCaseInfo.tags.empty() ) in listTests() 9123 Catch::cout() << Column( testCaseInfo.tagsAsString() ).indent( 6 ) << "\n"; in listTests() 9137 for( auto const& testCaseInfo : matchedTestCases ) { in listTestsNamesOnly() local [all …]
|