Home
last modified time | relevance | path

Searched refs:total_tests (Results 1 – 7 of 7) sorted by relevance

/external/autotest/client/site_tests/audio_CrasSanity/
Daudio_CrasSanity.py57 total_tests = 2
62 if active_streams >= total_tests:
69 while total_tests > 0:
70 self._cr.browser.tabs[total_tests].Close()
71 total_tests -= 1
/external/webrtc/third_party/gtest-parallel/
Dgtest-parallel123 total_tests = 0 variable in FilterFormat
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))
/external/autotest/server/cros/chaos_lib/
Dchaos_parser.py104 def generate_percentage_string(self, passed_tests, total_tests): argument
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/
Dgenerate_test_report701 total_tests = passed_tests + failed_tests + na_tests
766 failed_tests, na_tests, total_tests)
834 total_tests = len(tests)
835 percent_pass = 100 * tests_pass / total_tests
836 pass_str = '%d/%d (%d%%)' % (tests_pass, total_tests, percent_pass)
/external/libvpx/libvpx/third_party/googletest/src/src/
Dgtest.cc3826 int total_tests = 0; in PrintXmlTestsList() local
3828 total_tests += test_cases[i]->total_test_count(); in PrintXmlTestsList()
3831 StreamableToString(total_tests)); in PrintXmlTestsList()
4203 int total_tests = 0; in PrintJsonTestList() local
4205 total_tests += test_cases[i]->total_test_count(); in PrintJsonTestList()
4207 OutputJsonKey(stream, kTestsuites, "tests", total_tests, kIndent); in PrintJsonTestList()
/external/dtc/tests/
Drun_tests.sh806 total_tests=$(sed -n 's/^Ran \([0-9]*\) tests.*$/\1/p' $TMP)
813 tot_tests=$((tot_tests + $total_tests))
/external/googletest/googletest/src/
Dgtest.cc3870 int total_tests = 0; in PrintXmlTestsList() local
3872 total_tests += test_suite->total_test_count(); in PrintXmlTestsList()
3875 StreamableToString(total_tests)); in PrintXmlTestsList()
4250 int total_tests = 0; in PrintJsonTestList() local
4252 total_tests += test_suite->total_test_count(); in PrintJsonTestList()
4254 OutputJsonKey(stream, kTestsuites, "tests", total_tests, kIndent); in PrintJsonTestList()