Home
last modified time | relevance | path

Searched refs:testCaseInfo (Results 1 – 9 of 9) sorted by relevance

/external/catch2/include/internal/
Dcatch_list.cpp39 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 …]
Dcatch_test_case_info.cpp94 void setTags( TestCaseInfo& testCaseInfo, std::vector<std::string> tags ) { in setTags() argument
97 testCaseInfo.lcaseTags.clear(); in setTags()
101testCaseInfo.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()
Dcatch_run_context.cpp281 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()
Dcatch_test_case_info.h44 friend void setTags( TestCaseInfo& testCaseInfo, std::vector<std::string> tags );
/external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
DvktSpvAsmFloatControlsTests.cpp2169 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/
Dcatch_reporter_junit.cpp96 void JunitReporter::testCaseStarting( TestCaseInfo const& testCaseInfo ) { in testCaseStarting() argument
97 m_okToFail = testCaseInfo.okToFail(); in testCaseStarting()
Dcatch_reporter_junit.h31 void testCaseStarting(TestCaseInfo const& testCaseInfo) override;
/external/bcc/tests/cc/
Dcatch.hpp2828 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/
Dcatch.hpp4191 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 …]