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

  /external/autotest/client/site_tests/audio_CrasSanity/
audio_CrasSanity.py 75 total_tests = len(self._audio) + len(self._video)
79 if active_streams >= total_tests:
86 while total_tests > 0:
87 self._cr.browser.tabs[total_tests].Close()
88 total_tests -= 1
  /external/chromium-trace/catapult/third_party/gsutil/gslib/commands/
test.py 160 def MakeCustomTestResultClass(total_tests):
164 total_tests: The total number of tests being run.
178 self.testsRun, total_tests, len(self.errors),
573 total_tests = suite.countTestCases()
574 resultclass = MakeCustomTestResultClass(total_tests)
  /external/webrtc/third_party/gtest-parallel/
gtest-parallel 123 total_tests = 0
132 % (self.finished_tests, self.total_tests,
152 % (self.finished_tests, self.total_tests, test, exit_code, time_ms))
154 self.total_tests = int(arg.split(' ', 1)[1])
155 self.out.transient_line("[0/%d] Running tests..." % self.total_tests)
171 % (len(self.failures), self.total_tests))
  /hardware/qcom/camera/QCamera2/stack/mm-lib2d-interface/test/
mm_lib2d_test.c 346 unsigned int total_tests = 1; local
397 total_tests = sizeof(input_nv21)/sizeof(input_yuv_data);
402 for (index = 0; index < total_tests; index++)
418 index+1, total_tests);
539 __LINE__, index - 1, total_tests);
  /hardware/qcom/camera/msmcobalt/QCamera2/stack/mm-lib2d-interface/test/
mm_lib2d_test.c 346 unsigned int total_tests = 1; local
397 total_tests = sizeof(input_nv21)/sizeof(input_yuv_data);
402 for (index = 0; index < total_tests; index++)
418 index+1, total_tests);
539 __LINE__, index - 1, total_tests);
  /external/autotest/server/cros/chaos_lib/
chaos_parser.py 104 def generate_percentage_string(self, passed_tests, total_tests):
108 @param total_tests: int of total tests
113 percent = float(passed_tests)/float(total_tests) * 100
115 return str('%d/%d (%s)' % (passed_tests, total_tests, percent_string))
  /external/autotest/site_utils/
generate_test_report 654 total_tests = len(tests)
655 percent_pass = 100 * tests_pass / total_tests
656 pass_str = '%d/%d (%d%%)' % (tests_pass, total_tests, percent_pass)

Completed in 2263 milliseconds