Home
last modified time | relevance | path

Searched refs:tests_ (Results 1 – 4 of 4) sorted by relevance

/system/nvram/core/tests/
Dgtest_stubs.cpp28 for (TestDeclarationBase* decl = tests_; decl; decl = decl->next) { in RunAllTests()
43 test_declaration->next = tests_; in Register()
44 tests_ = test_declaration; in Register()
Dgtest_stubs.h94 TestDeclarationBase* tests_ = nullptr;
/system/testing/gtest_extras/gtest_isolated/
DIsolate.cpp154 tests_.push_back(std::make_tuple(suite_name, test_name)); in EnumerateTests()
224 while (!running_indices_.empty() && cur_test_index_ < tests_.size()) { in LaunchTests()
249 exit(ChildProcessFn(tests_[cur_test_index_])); in LaunchTests()
254 Test* test = new Test(tests_[cur_test_index_], cur_test_index_, run_index, read_fd); in LaunchTests()
457 while (finished < tests_.size()) { in RunAllTests()
693 tests_.size(), total_fail_tests_ + total_timeout_tests_ + total_xpass_tests_); in WriteXmlResults()
829 if (total_pass_tests_ + total_skipped_tests_ + total_xfail_tests_ != tests_.size()) { in Run()
DIsolate.h98 std::vector<std::tuple<std::string, std::string>> tests_; variable