Lines Matching refs:options_
88 if (!options_.filter().empty()) { in EnumerateTests()
89 command += " --gtest_filter=" + options_.filter(); in EnumerateTests()
101 size_t total_shards = options_.total_shards(); in EnumerateTests()
105 test_count = options_.shard_index() + 1; in EnumerateTests()
125 if (!options_.allow_disabled_tests() && android::base::StartsWith(suite_name, "DISABLED_")) { in EnumerateTests()
142 if (options_.allow_disabled_tests() || !android::base::StartsWith(test_name, "DISABLED_")) { in EnumerateTests()
288 uint64_t time_ms = options_.deadline_threshold_ms(); in CheckTestsFinished()
304 test->Print(options_.gtest_format()); in CheckTestsFinished()
405 size_t job_count = options_.job_count(); in RunAllTests()
447 results.print_func(options_, *test); in PrintResults()
631 FILE* fp = fopen(options_.xml_file().c_str(), "w"); in WriteXmlResults()
633 printf("Cannot open xml file '%s': %s\n", options_.xml_file().c_str(), strerror(errno)); in WriteXmlResults()
709 slow_threshold_ns_ = options_.slow_threshold_ms() * kNsPerMs; in Run()
710 deadline_threshold_ns_ = options_.deadline_threshold_ms() * kNsPerMs; in Run()
712 bool sharding_enabled = options_.total_shards() > 1; in Run()
714 (options_.shard_index() < 0 || options_.shard_index() >= options_.total_shards())) { in Run()
719 options_.shard_index(), options_.total_shards()); in Run()
724 if (!options_.filter().empty()) { in Run()
725 ColoredPrintf(COLOR_YELLOW, "Note: Google Test filter = %s", options_.filter().c_str()); in Run()
731 options_.shard_index() + 1, options_.total_shards()); in Run()
745 PluralizeString(options_.job_count(), " job") + ")."); in Run()
748 for (int i = 0; options_.num_iterations() < 0 || i < options_.num_iterations(); i++) { in Run()
763 if (!options_.xml_file().empty()) { in Run()