Searched refs:failedRatio (Results 1 – 4 of 4) sorted by relevance
/external/catch2/include/reporters/ |
D | catch_reporter_console.cpp | 659 std::size_t failedRatio = makeRatio(totals.testCases.failed, totals.testCases.total()); in printTotalsDivider() local 662 while (failedRatio + failedButOkRatio + passedRatio < CATCH_CONFIG_CONSOLE_WIDTH - 1) in printTotalsDivider() 663 findMax(failedRatio, failedButOkRatio, passedRatio)++; in printTotalsDivider() 664 while (failedRatio + failedButOkRatio + passedRatio > CATCH_CONFIG_CONSOLE_WIDTH - 1) in printTotalsDivider() 665 findMax(failedRatio, failedButOkRatio, passedRatio)--; in printTotalsDivider() 667 stream << Colour(Colour::Error) << std::string(failedRatio, '='); in printTotalsDivider()
|
/external/bcc/tests/cc/ |
D | catch.hpp | 9872 … std::size_t failedRatio = makeRatio( totals.testCases.failed, totals.testCases.total() ); in printTotalsDivider() local 9875 while( failedRatio + failedButOkRatio + passedRatio < CATCH_CONFIG_CONSOLE_WIDTH-1 ) in printTotalsDivider() 9876 findMax( failedRatio, failedButOkRatio, passedRatio )++; in printTotalsDivider() 9877 while( failedRatio + failedButOkRatio + passedRatio > CATCH_CONFIG_CONSOLE_WIDTH-1 ) in printTotalsDivider() 9878 findMax( failedRatio, failedButOkRatio, passedRatio )--; in printTotalsDivider() 9880 stream << Colour( Colour::Error ) << std::string( failedRatio, '=' ); in printTotalsDivider()
|
/external/catch2/single_include/catch2/ |
D | catch.hpp | 16440 std::size_t failedRatio = makeRatio(totals.testCases.failed, totals.testCases.total()); in printTotalsDivider() local 16443 while (failedRatio + failedButOkRatio + passedRatio < CATCH_CONFIG_CONSOLE_WIDTH - 1) in printTotalsDivider() 16444 findMax(failedRatio, failedButOkRatio, passedRatio)++; in printTotalsDivider() 16445 while (failedRatio + failedButOkRatio + passedRatio > CATCH_CONFIG_CONSOLE_WIDTH - 1) in printTotalsDivider() 16446 findMax(failedRatio, failedButOkRatio, passedRatio)--; in printTotalsDivider() 16448 stream << Colour(Colour::Error) << std::string(failedRatio, '='); in printTotalsDivider()
|
/external/libabigail/tests/lib/ |
D | catch.hpp | 16693 std::size_t failedRatio = makeRatio(totals.testCases.failed, totals.testCases.total()); in printTotalsDivider() local 16696 while (failedRatio + failedButOkRatio + passedRatio < CATCH_CONFIG_CONSOLE_WIDTH - 1) in printTotalsDivider() 16697 findMax(failedRatio, failedButOkRatio, passedRatio)++; in printTotalsDivider() 16698 while (failedRatio + failedButOkRatio + passedRatio > CATCH_CONFIG_CONSOLE_WIDTH - 1) in printTotalsDivider() 16699 findMax(failedRatio, failedButOkRatio, passedRatio)--; in printTotalsDivider() 16701 stream << Colour(Colour::Error) << std::string(failedRatio, '='); in printTotalsDivider()
|