Home
last modified time | relevance | path

Searched refs:target (Results 1 - 25 of 38) sorted by relevance

12

/test/xts/acts/
H A Dbuild.sh25 echo " target_subsystem : TARGET_SUBSYSTEM the target subsystem to build"
123 ./build.sh --product-name $PRODUCT_NAME --gn-args $system_build_params --build-target $BUILD_TARGET --build-target "deploy_testtools" --gn-args is_standard_system=true $MUSL_ARGS --target-cpu $TARGET_ARCH --get-warning-list=false --stat-ccache=true --compute-overlap-rate=false --deps-guard=false $CACHE_ARG --gn-args skip_generate_module_list_file=true
126 ./build.sh --product-name $PRODUCT_NAME --gn-args $system_build_params --build-target "acts" --build-target "acts_ivi" --build-target "acts_intellitv" --build-target "acts_wearable" --build-target "deploy_testtools"
128 ./build.sh --product-name $PRODUCT_NAME --gn-args $system_build_params --build-target
[all...]
H A Dci_build.sh29 row_number=$(awk -F',' -v target="$row" 'NR==1{for(i=1;i<=NF;i++){if($i==target){print i;exit}}}' "$xts_enter_config")
34 line_number=$(awk -F',' -v target="$repo" '$1 == target {print NR}' "$xts_enter_config")
40 # 仓名映射target
/test/xts/dcts/
H A Dbuild.sh23 echo " target_platform : TARGET_PLATFORM the target platform, such as phone or ivi; Default to phone"
27 echo " target_subsystem : TARGET_SUBSYSTEM the target subsystem to build"
116 ./build.sh --product-name $PRODUCT_NAME --gn-args build_xts=true --build-target $BUILD_TARGET --build-target "deploy_testtools" --gn-args is_standard_system=true $MUSL_ARGS --target-cpu $TARGET_ARCH --get-warning-list=false --stat-ccache=true --compute-overlap-rate=false --deps-guard=false --generate-ninja-trace=false $CACHE_ARG --gn-args skip_generate_module_list_file=true
119 ./build.sh --product-name $PRODUCT_NAME --gn-args build_xts=true --build-target "dcts" --build-target "dcts_ivi" --build-target "dcts_intellitv" --build-target "dcts_wearable" --build-target "deploy_testtool
[all...]
/test/xts/hats/
H A Dbuild.sh25 echo " target_subsystem : TARGET_SUBSYSTEM the target subsystem to build"
109 ./build.sh --product-name $PRODUCT_NAME --gn-args build_xts=true --build-target $BUILD_TARGET --build-target "deploy_testtools" --gn-args is_standard_system=true $MUSL_ARGS --target-cpu $TARGET_ARCH --get-warning-list=false --stat-ccache=true --compute-overlap-rate=false --deps-guard=false --generate-ninja-trace=false $CACHE_ARG --gn-args skip_generate_module_list_file=true
112 ./build.sh --product-name $PRODUCT_NAME --gn-args build_xts=true --build-target "hats" --build-target "hats_ivi" --build-target "hats_intellitv" --build-target "hats_wearable" --build-target "deploy_testtools"
114 ./build.sh --product-name $PRODUCT_NAME --gn-args build_xts=true --build-target
[all...]
/test/xts/acts/commonlibrary/thirdparty/musl/entry/src/main/cpp/
H A Dmountndk.cpp78 const char target[] = "/data/storage/el2/base/files/mount2"; in Mounttest() local
79 rev = mount(special, target, "", PARAM_0, ""); in Mounttest()
102 const char target[] = "/data/storage/el2/base/files/mount2"; in umounttest() local
103 rev = mount(special, target, "", PARAM_0, ""); in umounttest()
124 const char target[] = "/data/storage/el2/base/files/mount2"; in umount2test() local
125 rev = mount(special, target, "", PARAM_0, ""); in umount2test()
/test/xts/acts/global_lite/i18n_lite/resource_parse_load/src/
H A Dres_config_test.cpp70 ResConfigImpl *target = new ResConfigImpl; in HWTEST_F() local
71 target->SetLocaleInfo("zh", nullptr, "CN"); in HWTEST_F()
73 EXPECT_TRUE(rc->Match(target) == false); in HWTEST_F()
74 delete target; in HWTEST_F()
/test/ostest/wukong/component_event/src/
H A Dwukong_tree.cpp61 std::string target = "Ability"; in GetClearnAbility() local
63 size_t pos = name.find(target); in GetClearnAbility()
65 name.replace(pos, target.length(), replacement); in GetClearnAbility()
66 pos = name.find(target, pos + replacement.length()); in GetClearnAbility()
/test/xts/tools/build/
H A Dsuite.py166 # remove the extra output of target "java_prebuilt"
313 def _copy_file(self, source, target):
314 if not os.path.exists(os.path.dirname(target)):
315 os.makedirs(os.path.dirname(target))
316 if not os.path.exists(target) or (
317 os.path.exists(target) and
318 (os.stat(target).st_mtime != os.stat(source).st_mtime)):
319 print('Trying to copy "%s" to "%s"' % (source, target))
320 subprocess.call(["rm", "-rf", target])
321 subprocess.call(["cp", "-rf", source, target])
[all...]
/test/testfwk/developer_test/src/core/command/
H A Dgen.py67 for target in fuzzer_list:
68 if target:
69 gn_file.write("\"%s\",\n" % target)
/test/testfwk/arkxtest/hamock/src/main/mock/
H A DMockKit.js237 function MockSetup(target, propertyName, descriptor) {
238 const aboutToAppearOrigin = target.aboutToAppear;
240 target.aboutToAppear = function (...args) {
241 if (target.__Param) { // copy attributes and params of the original context
243 const map = target.__Param;
/test/testfwk/developer_test/aw/python/distributed/common/
H A Ddrivers.py62 def is_exist_target_in_device(device, path, target):
63 command = "ls -l %s | grep %s" % (path, target)
66 if stdout_info != "" and stdout_info.find(target) != -1:
/test/ostest/wukong/report/src/
H A Dformat_json.cpp28 void FormatJSON::FormatDetail(std::shared_ptr<Table> tablePtr, std::string &target) in FormatDetail() argument
47 target = ss.str(); in FormatDetail()
H A Dformat_csv.cpp31 void FormatCSV::FormatDetail(std::shared_ptr<Table> tablePtr, std::string &target) in FormatDetail() argument
59 target += ss.str(); in FormatDetail()
H A Dformat.cpp26 void Format::FormatDetail(std::shared_ptr<Table> tablePtr, std::string &target) in FormatDetail() argument
/test/testfwk/developer_test/src/core/build/
H A Dbuild_testcases.py126 def build_testcases(self, productform, target):
131 if isinstance(target, list):
132 for test in target:
133 command.append("--build-target")
135 elif isinstance(target, str):
136 for test in target.split(','):
137 command.append("--build-target")
167 xts_build_test_command.append("--build-target")
210 command.append("--build-target")
H A Dbuild_manager.py72 for target in target_list:
73 if target:
74 gn_file.write(" \"%s\",\n" % target)
234 LOG.warning("No build target found.")
/test/xts/hats/kernel/purgeableMem/
H A Dpurgeable_cpp_test.cpp99 explicit TestBigDataBuilder(char target) in TestBigDataBuilder() argument
101 this->target = target; in TestBigDataBuilder()
111 for (char ch = target; len < size;) { in Build()
124 char target; member in OHOS::PurgeableMem::TestBigDataBuilder
/test/testfwk/xdevice/src/xdevice/_core/config/
H A Dresource_manager.py83 targets = root.iter("target")
84 for target in targets:
85 curr_dic = target.attrib
87 node = target
/test/testfwk/xdevice/plugins/ohos/src/ohos/testkit/
H A Dkit_lite.py221 target = mount_file.get("target", "/test_root")
222 if target in self.mounted_dir:
223 LOG.debug("%s is mounted" % target)
225 mkdir_on_board(device, target)
226 self.mounted_dir.add(target)
233 "device_directory", target).replace("//", "/")
244 LOG.info("{} is mounted".format(target))
/test/testfwk/developer_test/src/core/config/
H A Dresource_manager.py72 targets = root.iter("target")
73 for target in targets:
74 curr_dic = target.attrib
77 node = target
/test/testfwk/xdevice/plugins/ohos/src/ohos/drivers/
H A Dconstants.py190 def is_exist_target_in_device(self, path, target):
191 command = "ls -l %s | grep %s" % (path, target)
195 if stdout_info != "" and stdout_info.find(target) != -1:
/test/xts/acts/kernel_lite/utils/
H A Dutils.cpp31 int CheckValueClose(double target, double actual, double accuracy) in CheckValueClose() argument
33 double diff = actual - target; in CheckValueClose()
/test/ostest/wukong/report/include/
H A Dformat.h29 * @param target format output string
32 virtual void FormatDetail(std::shared_ptr<Table> tablePtr, std::string &target);
H A Dformat_json.h30 void FormatDetail(std::shared_ptr<Table> tablePtr, std::string &target);
H A Dformat_csv.h27 void FormatDetail(std::shared_ptr<Table> tablePtr, std::string &target);

Completed in 11 milliseconds

12