Searched refs:find_cmd (Results 1 – 6 of 6) sorted by relevance
/tools/tradefederation/core/atest/tools/ |
D | atest_tools.py | 175 find_cmd = (r"locate -d {0} '*.cpp' '*.cc' | grep -i test " 178 find_cmd = (r"locate -d {0} / | egrep -i '/*.test.*\.(cc|cpp)$' " 180 find_cc_cmd = find_cmd.format(locatedb, cc_grep_re) 194 find_cmd = r"locate -d%s '*.java' '*.kt'|grep -i test" % locatedb 196 find_cmd = r"locate -d%s / | egrep -i '/*.test.*\.(java|kt)$'" % locatedb 197 find_java_cmd = find_cmd + '| xargs egrep -sH \'%s\' || true' % package_grep_re
|
/tools/asuite/atest/tools/ |
D | atest_tools.py | 198 find_cmd = (r"locate -d {0} '*.cpp' '*.cc' | grep -i test " 201 find_cmd = (r"locate -d {0} / | egrep -i '/*.test.*\.(cc|cpp)$' " 203 find_cc_cmd = find_cmd.format(locatedb, cc_grep_re) 217 find_cmd = r"locate -d%s '*.java' '*.kt'|grep -i test" % locatedb 219 find_cmd = r"locate -d%s / | egrep -i '/*.test.*\.(java|kt)$'" % locatedb 220 find_java_cmd = find_cmd + '| xargs egrep -sH \'%s\' || true' % package_grep_re
|
/tools/asuite/atest/test_finders/ |
D | test_finder_utils.py | 445 find_cmd = FIND_CMDS[ref_type].format(search_dir, prune_cond, target) 446 logging.debug('Executing %s find cmd: %s', ref_name, find_cmd) 447 out = subprocess.check_output(find_cmd, shell=True)
|
D | module_finder_unittest.py | 87 def classoutside_side_effect(find_cmd, shell=False): argument 89 search_dir = SEARCH_DIR_RE.match(find_cmd).group(1).strip()
|
/tools/tradefederation/core/atest/test_finders/ |
D | test_finder_utils.py | 437 find_cmd = FIND_CMDS[ref_type].format(search_dir, prune_cond, target) 438 logging.debug('Executing %s find cmd: %s', ref_name, find_cmd) 439 out = subprocess.check_output(find_cmd, shell=True)
|
D | module_finder_unittest.py | 84 def classoutside_side_effect(find_cmd, shell=False): argument 86 search_dir = SEARCH_DIR_RE.match(find_cmd).group(1).strip()
|