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

  /external/ltp/android/tools/
make_install_parser.py 38 def __init__(self, ltp_root):
39 self.ltp_root = ltp_root
51 (os.path.realpath(self.ltp_root), os.sep))
65 os.path.realpath(self.ltp_root) + os.sep + src):
77 dest='ltp_root',
87 make_install_parser = MakeInstallParser(args.ltp_root)
compare_ltp_projects.py 33 def scan_tests(ltp_root, suite):
37 ltp_root: Path ot the LTP project.
48 runtest_dir = ltp_root + os.path.sep + 'runtest'
62 def scan_test_suites(ltp_root, scenario):
66 ltp_root: Path to the LTP project.
67 scenario: name of the scenario (found in ltp_root/scenario_groups). E.g. "vts"
74 runtest_dir = ltp_root + os.path.sep + 'runtest'
76 print ('Invalid ltp_root {}, runtest directory doesnt exist'.format(ltp_root))
81 scenarioFile = ltp_root + os.path.sep + 'scenario_groups' + os.path.sep + scenari
    [all...]
make_parser.py 32 ltp_root: string, LTP root directory
39 def __init__(self, ltp_root):
40 self.ltp_root = ltp_root
66 path = os.path.realpath(self.ltp_root + os.sep + self.dir_stack[-1]
68 return os.path.realpath(path).replace(self.ltp_root + os.sep, '')
191 dest='ltp_root',
201 make_parser = MakeParser(args.ltp_root)
android_build_generator.py 261 def ParseInput(self, input_list, ltp_root):
321 cc_includes[target] = [i for i in cc_includes[target] if os.path.isdir(os.path.join(ltp_root, i))]
405 # Check if the absolute path to the prebuilt (relative to LTP_ROOT)
458 def ParseAll(self, ltp_root):
462 ltp_root: string
464 parser = make_parser.MakeParser(ltp_root)
465 self.ParseInput(parser.ParseFile(MAKE_DRY_RUN_FILE_NAME), ltp_root)
466 parser = make_install_parser.MakeInstallParser(ltp_root)
467 self.ParseInput(parser.ParseFile(MAKE_INSTALL_DRY_RUN_FILE_NAME), ltp_root)
478 '--ltp_root', dest='ltp_root', required=True, help='LTP root dir'
    [all...]
gen_android_build.sh 20 LTP_ROOT=$(realpath $LTP_ANDROID_DIR/..)
24 OUTPUT_BP=$LTP_ROOT/gen.bp
26 if ! [ -f $LTP_ROOT/include/config.h ]; then
28 echo "Executing \"cd $LTP_ROOT; make autotools; ./configure\""
29 cd $LTP_ROOT
31 $LTP_ROOT/configure
69 python android_build_generator.py --ltp_root $LTP_ROOT --output_mk_path $OUTPUT_MK \

Completed in 4203 milliseconds