Lines Matching refs:options_

94   if (!options_.filter().empty()) {  in EnumerateTests()
95 command += " --gtest_filter=" + options_.filter(); in EnumerateTests()
108 size_t total_shards = options_.total_shards(); in EnumerateTests()
112 test_count = options_.shard_index() + 1; in EnumerateTests()
132 if (!options_.allow_disabled_tests() && StartsWithDisabled(suite_name)) { in EnumerateTests()
149 if (options_.allow_disabled_tests() || !StartsWithDisabled(test_name)) { in EnumerateTests()
323 uint64_t time_ms = options_.deadline_threshold_ms(); in CheckTestsFinished()
440 size_t job_count = options_.job_count(); in RunAllTests()
482 results.print_func(options_, *test); in PrintResults()
673 FILE* fp = fopen(options_.xml_file().c_str(), "w"); in WriteXmlResults()
675 printf("Cannot open xml file '%s': %s\n", options_.xml_file().c_str(), strerror(errno)); in WriteXmlResults()
751 slow_threshold_ns_ = options_.slow_threshold_ms() * kNsPerMs; in Run()
752 deadline_threshold_ns_ = options_.deadline_threshold_ms() * kNsPerMs; in Run()
754 bool sharding_enabled = options_.total_shards() > 1; in Run()
756 (options_.shard_index() < 0 || options_.shard_index() >= options_.total_shards())) { in Run()
761 options_.shard_index(), options_.total_shards()); in Run()
766 if (!options_.filter().empty()) { in Run()
767 ColoredPrintf(COLOR_YELLOW, "Note: Google Test filter = %s", options_.filter().c_str()); in Run()
773 options_.shard_index() + 1, options_.total_shards()); in Run()
787 PluralizeString(options_.job_count(), " job") + ")."); in Run()
790 for (int i = 0; options_.num_iterations() < 0 || i < options_.num_iterations(); i++) { in Run()
805 if (!options_.xml_file().empty()) { in Run()