HomeSort by: relevance | last modified time | path
    Searched refs:should_run (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/
gtest.h 751 bool should_run() const { return should_run_; } function in class:testing::TestInfo
862 bool should_run() const { return should_run_; } function in class:testing::TestSuite
925 // Sets the should_run member.
961 return test_info->should_run() && test_info->result()->Passed();
966 return test_info->should_run() && test_info->result()->Skipped();
971 return test_info->should_run() && test_info->result()->Failed();
992 return test_info->should_run();
  /src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/src/
gtest.cc 369 return test_suite->should_run() && test_suite->Passed();
374 return test_suite->should_run() && test_suite->Failed();
380 return test_suite->should_run();
3297 if (!test_suite.should_run() || (test_suite.failed_test_count() == 0)) {
3302 if (!test_info.should_run() || !test_info.result()->Failed()) {
3322 if (!test_suite.should_run() || (test_suite.skipped_test_count() == 0)) {
3327 if (!test_info.should_run() || !test_info.result()->Skipped()) {
3812 test_info.should_run() ? "run" : "notrun");
3814 test_info.should_run()
4187 test_info.should_run() ? "RUN" : "NOTRUN", kIndent)
    [all...]

Completed in 62 milliseconds