Searched refs:run_index (Results 1 – 3 of 3) sorted by relevance
/aosp12/system/testing/gtest_extras/ |
H A D | Isolate.cpp | 249 size_t run_index = running_indices_.back(); in LaunchTests() local 251 Test* test = new Test(tests_[cur_test_index_], cur_test_index_, run_index, read_fd); in LaunchTests() 253 running_[run_index] = test; in LaunchTests() 256 pollfd* pollfd = &running_pollfds_[run_index]; in LaunchTests() 369 running_indices_.push_back(test->run_index()); in CheckTestsFinished() 372 size_t run_index = test->run_index(); in CheckTestsFinished() local 379 running_[run_index] = nullptr; in CheckTestsFinished() 380 running_pollfds_[run_index] = {}; in CheckTestsFinished()
|
H A D | Test.cpp | 39 Test::Test(std::tuple<std::string, std::string>& test, size_t index, size_t run_index, int fd) in Test() argument 44 run_index_(run_index), in Test()
|
H A D | Test.h | 38 Test(std::tuple<std::string, std::string>& test, size_t test_index, size_t run_index, int fd); 66 size_t run_index() const { return run_index_; } in run_index() function
|