Home
last modified time | relevance | path

Searched refs:test_info (Results 1 – 2 of 2) sorted by relevance

/rocksdb-6.9/third-party/gtest-1.8.1/fused-src/gtest/
Dgtest-all.cc1072 test_info->type_param(), in AddTestInfo()
4052 TestInfo* const test_info = in MakeAndRegisterTestInfo() local
4056 return test_info; in MakeAndRegisterTestInfo()
4098 return test_info && test_info->name() == name_; in operator ()()
4247 test_info_list_.push_back(test_info); in AddTestInfo()
4638 PrintTestName(test_info.test_case_name(), test_info.name()); in OnTestStart()
4656 if (test_info.result()->Passed()) { in OnTestEnd()
4661 PrintTestName(test_info.test_case_name(), test_info.name()); in OnTestEnd()
4662 if (test_info.result()->Failed()) in OnTestEnd()
4707 if (!test_info.should_run() || test_info.result()->Passed()) { in PrintFailedTests()
[all …]
Dgtest.h11952 linked_ptr<TestInfo> test_info = *test_it;
20549 static void ClearTestResult(TestInfo* test_info) {
20550 test_info->result_.Clear();
20676 void AddTestInfo(TestInfo * test_info);
20698 static bool TestPassed(const TestInfo* test_info) {
20699 return test_info->should_run() && test_info->result()->Passed();
20704 return test_info->should_run() && test_info->result()->Failed();
20710 return test_info->is_reportable() && test_info->is_disabled_;
20715 return test_info->is_disabled_;
20720 return test_info->is_reportable();
[all …]