/external/chromium-trace/catapult/dashboard/dashboard/templates/ |
debug_alert.html | 64 <td><input type="text" name="test_path" size="100" value="{{test_path}}"></td>
|
/bionic/tests/libs/ |
Android.build.dt_runpath.mk | 84 include $(TEST_PATH)/Android.build.mk
|
Android.mk | 18 TEST_PATH := $(LOCAL_PATH)/.. 33 $(TEST_PATH)/Android.build.mk 113 include $(TEST_PATH)/Android.build.mk 128 include $(TEST_PATH)/Android.build.mk 144 include $(TEST_PATH)/Android.build.mk 154 include $(TEST_PATH)/Android.build.mk 354 include $(TEST_PATH)/Android.build.mk 366 include $(TEST_PATH)/Android.build.mk
|
/development/testrunner/test_defs/ |
test_suite.py | 139 """Creates the tests at given test_path.
|
instrumentation_test.py | 231 """Create tests found in test_path. 235 test_path refers to a java package or java class.
|
/external/chromium-trace/catapult/dashboard/dashboard/elements/ |
chart-container-test.html | 116 var revisionQuery = ('/graph_revisions?test_path=' +
|
trace-form.html | 137 'test_path': this.testPath,
|
bisect-form.html | 192 'test_path': this.testPath,
|
/external/chromium-trace/catapult/dashboard/dashboard/ |
add_point.py | 585 def _ValidateTestPath(test_path): 589 if len(test_path) > _MAX_TEST_PATH_LENGTH: 590 raise BadRequestError('Test path too long: %s' % test_path) 593 if '*' in test_path: 596 for name in test_path.split('/'): 623 test_path = '%s/%s/%s' % (master, bot, test) 624 last_row_id = test_map.get(test_path) 627 logging.warning('Test %s has no last added revision entry.', test_path)
|
start_try_job_test.py | 367 'test_path': 'ChromiumPerf/win7/morejs/times/page_load_time', 412 'test_path': ('ChromiumPerf/win7/page_cycler.morejs/' 445 'test_path': ('ChromiumPerf/win7/page_cycler.morejs/' 456 'test_path': 'ChromiumPerf/win7/blink_perf/Animation_balls', 463 'test_path': 'ChromiumPerf/android-nexus7/blink_perf/Animation_balls', 470 'test_path': ('ChromiumPerf/chromium-rel-win8-dual/' 478 'test_path': ('ChromiumPerf/chromium-rel-xp-single/' [all...] |
add_point_queue.py | 144 test_path = '%s/%s/%s' % (master, bot, test) 146 id=test_path, revision=row_id)
|
main.py | 118 subtest_path = '/'.join(test.test_path.split('/')[3:])
|
auto_bisect.py | 160 if not test or not can_bisect.IsValidTestForBisect(test.test_path): 163 metric = start_try_job.GuessMetric(test.test_path)
|
mr.py | 143 if stoppage_alert.GetStoppageAlert(test.test_path, last_row.revision):
|
add_point_test.py | 219 self.assertEqual('ChromiumPerf/win7/dromaeo', tests[0].test_path) 230 self.assertEqual('ChromiumPerf/win7/dromaeo/dom', tests[1].test_path) 239 self.assertEqual('ChromiumPerf/win7/dromaeo/jslib', tests[2].test_path) [all...] |
/external/llvm/utils/lit/lit/ |
Test.py | 240 test_path = self.path_in_suite[:-1] 241 safe_test_path = [x.replace(".","_") for x in test_path]
|
/external/opencv3/cmake/ |
OpenCVModule.cmake | [all...] |
/development/testrunner/ |
runtest.py | 160 parser.add_option("-x", "--path", dest="test_path", 202 and not self._options.test_path 237 if not self._options.test_path: 436 elif self._options.test_path: 438 self._tests_to_run = walker.FindTests(self._options.test_path)
|
/external/autotest/tko/perf_upload/ |
perf_uploader.py | 209 test_path = '%s/%s/%s' % (presentation_info['test_name'], 212 test_path = '%s/%s' % (presentation_info['test_name'], desc) 217 'test': test_path,
|
/external/chromium-trace/catapult/catapult_build/ |
run_dev_server_tests.py | 174 test_path = os.path.join(search_path, chrome_path) 175 if os.path.isfile(test_path): 176 return test_path
|
/external/autotest/utils/ |
test_importer.py | 69 test_path = os.path.join(autotest_dir, path) 70 if not os.path.exists(test_path): 72 logging.info("Scanning %s", test_path) 74 tests = get_tests_from_fs(test_path, "^control.*",
|
/external/jemalloc/ |
Android.mk | 247 $(eval test_path := jemalloc_unittests); \ 304 $(eval test_path := jemalloc_integrationtests); \
|
/external/autotest/site_utils/docgen/ |
CreateDocs.py | 150 test_path = os.path.join(self.autotest_root, path) 151 if not os.path.exists(test_path): 153 self.logger.info("Scanning %s", test_path) 154 tests, tests_src = fs_find_tests.GetTestsFromFS(test_path,
|
/external/libnl/lib/route/sch/ |
netem.c | 876 char *test_path[] = { "", "./", "/usr/lib/tc/", "/usr/local/lib/tc/" }; local 878 for (i = 0; i < sizeof(test_path) && f == NULL; i++) { 879 snprintf(name, NAME_MAX, "%s%s%s", test_path[i], dist_type, dist_suffix);
|
/external/autotest/frontend/afe/doctests/ |
001_rpc_test.txt | 25 >>> test_path = os.path.join(os.path.dirname(test.__file__), 27 >>> test_path = os.path.abspath(test_path) 413 >>> test_control_path = os.path.join(test_path, 'test.control') 418 >>> test_control_path = os.path.join(test_path, 'test.control.2') [all...] |