Home
last modified time | relevance | path

Searched refs:find_cmd (Results 1 – 6 of 6) sorted by relevance

/tools/asuite/atest-py2/tools/
Datest_tools.py175 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/
Datest_tools.py215 find_cmd = (r"locate -d {0} '*.cpp' '*.cc' | grep -i test "
218 find_cmd = (r"locate -d {0} / | egrep -i '/*.test.*\.(cc|cpp)$' "
220 find_cc_cmd = find_cmd.format(locatedb, constants.CC_GREP_RE)
241 find_cmd = r"locate -d%s '*.java' '*.kt'|grep -i test" % locatedb
243 find_cmd = r"locate -d%s / | egrep -i '/*.test.*\.(java|kt)$'" % locatedb
245 find_java_cmd = find_cmd + '| xargs egrep -sH \'%s\' 2>/dev/null|| true' % package_grep_re
/tools/asuite/atest-py2/test_finders/
Dtest_finder_utils.py437 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)
Dmodule_finder_unittest.py84 def classoutside_side_effect(find_cmd, shell=False): argument
86 search_dir = SEARCH_DIR_RE.match(find_cmd).group(1).strip()
/tools/asuite/atest/test_finders/
Dtest_finder_utils.py556 find_cmd = FIND_CMDS[ref_type].format(search_dir, prune_cond, target)
557 logging.debug('Executing %s find cmd: %s', ref_name, find_cmd)
558 out = subprocess.check_output(find_cmd, shell=True)
Dmodule_finder_unittest.py92 def classoutside_side_effect(find_cmd, shell=False): argument
94 search_dir = SEARCH_DIR_RE.match(find_cmd).group(1).strip()