HomeSort by relevance Sort by last modified time
    Searched refs:next_testcase_id (Results 1 - 2 of 2) sorted by null

  /test/vts/runners/target/gtest/
gtest_main.cpp 871 // Next test to run is [next_testcase_id:next_test_id].
872 size_t next_testcase_id = 0; local
882 next_testcase_id < testcase_list.size()) {
884 testcase_list[next_testcase_id].GetTestName(next_test_id);
885 ChildProcInfo child_proc = RunChildProcess(test_name, next_testcase_id,
888 if (++next_test_id == testcase_list[next_testcase_id].TestCount()) {
890 ++next_testcase_id;
    [all...]
  /bionic/tests/
gtest_main.cpp 906 // Next test to run is [next_testcase_id:next_test_id].
907 size_t next_testcase_id = 0; local
916 while (child_proc_list.size() < job_count && next_testcase_id < testcase_list.size()) {
917 std::string test_name = testcase_list[next_testcase_id].GetTestName(next_test_id);
918 ChildProcInfo child_proc = RunChildProcess(test_name, next_testcase_id, next_test_id,
921 if (++next_test_id == testcase_list[next_testcase_id].TestCount()) {
923 ++next_testcase_id;
    [all...]

Completed in 66 milliseconds