Home
last modified time | relevance | path

Searched refs:DeviceTestType (Results 1 – 15 of 15) sorted by relevance

/test/testfwk/xdevice/src/xdevice/_core/
Dconstants.py107 class DeviceTestType(object): class
152 DeviceTestType.cpp_test,
153 DeviceTestType.dex_test,
154 DeviceTestType.hap_test,
155 DeviceTestType.junit_test,
156 DeviceTestType.dex_junit_test,
157 DeviceTestType.jsunit_test,
158 DeviceTestType.jsunit_test_lite,
159 DeviceTestType.cpp_test_lite,
160 DeviceTestType.ctest_lite,
[all …]
/test/testfwk/xdevice/src/xdevice/_core/executor/
Dsource.py25 from _core.constants import DeviceTestType
43 TEST_TYPE_DICT = {"DEX": DeviceTestType.dex_test,
44 "HAP": DeviceTestType.hap_test,
45 "APK": DeviceTestType.hap_test,
47 "JST": DeviceTestType.jsunit_test,
48 "OHJST": DeviceTestType.oh_jsunit_test,
49 "CXX": DeviceTestType.cpp_test,
50 "BIN": DeviceTestType.lite_cpp_test,
51 "LTPPosix": DeviceTestType.ltp_posix_test}
52 EXT_TYPE_DICT = {".dex": DeviceTestType.dex_test,
[all …]
/test/testfwk/developer_test/src/core/driver/
Dlite_driver.py24 from xdevice import DeviceTestType
70 @Plugin(type=Plugin.DRIVER, id=DeviceTestType.lite_cpp_test)
137 self.mnt_cmd, case_type=DeviceTestType.lite_cpp_test, timeout=3)
148 self.mnt_cmd, case_type=DeviceTestType.lite_cpp_test,
168 case_type=DeviceTestType.lite_cpp_test)
195 case_type=DeviceTestType.lite_cpp_test)
199 test_command, case_type=DeviceTestType.lite_cpp_test)
268 case_type=DeviceTestType.lite_cpp_test)
272 case_type=DeviceTestType.lite_cpp_test)
283 command=ls_command, case_type=DeviceTestType.cpp_test_lite,
[all …]
Dopenharmony.py33 from xdevice import DeviceTestType
201 @Plugin(type=Plugin.DRIVER, id=DeviceTestType.oh_jsunit_test)
442 DeviceTestType.oh_jsunit_test, [])
Ddrivers.py34 from xdevice import DeviceTestType, check_result_report
533 @Plugin(type=Plugin.DRIVER, id=DeviceTestType.cpp_test)
818 @Plugin(type=Plugin.DRIVER, id=DeviceTestType.jsunit_test)
1168 @Plugin(type=Plugin.DRIVER, id=DeviceTestType.oh_rust_test)
/test/testfwk/xdevice/plugins/ohos/src/ohos/drivers/
Ddrivers_lite.py47 from xdevice import DeviceTestType
113 @Plugin(type=Plugin.DRIVER, id=DeviceTestType.cpp_test_lite)
274 case_type=DeviceTestType.cpp_test_lite,
297 case_type=DeviceTestType.cpp_test_lite,
372 command=command, case_type=DeviceTestType.cpp_test_lite,
378 case_type=DeviceTestType.cpp_test_lite,
501 command=ls_command, case_type=DeviceTestType.cpp_test_lite,
615 @Plugin(type=Plugin.DRIVER, id=DeviceTestType.ctest_lite)
716 command=reset_cmd, case_type=DeviceTestType.ctest_lite,
780 command=[], case_type=DeviceTestType.ctest_lite,
[all …]
Ddrivers.py41 from xdevice import DeviceTestType
221 @Plugin(type=Plugin.DRIVER, id=DeviceTestType.cpp_test)
540 @Plugin(type=Plugin.DRIVER, id=DeviceTestType.jsunit_test)
865 DeviceTestType.jsunit_test, [])
877 @Plugin(type=Plugin.DRIVER, id=DeviceTestType.ltp_posix_test)
Dopenharmony.py44 from xdevice import DeviceTestType
94 @Plugin(type=Plugin.DRIVER, id=DeviceTestType.oh_kernel_test)
255 @Plugin(type=Plugin.DRIVER, id=DeviceTestType.oh_jsunit_test)
536 DeviceTestType.oh_jsunit_test, [])
720 @Plugin(type=Plugin.DRIVER, id=DeviceTestType.oh_rust_test)
852 @Plugin(type=Plugin.DRIVER, id=DeviceTestType.oh_yara_test)
1291 @Plugin(type=Plugin.DRIVER, id=DeviceTestType.validator_test)
/test/testfwk/xdevice/plugins/ohos/src/ohos/environment/
Ddmlib_lite.py22 from xdevice import DeviceTestType
263 if case_type == DeviceTestType.ctest_lite:
/test/testfwk/developer_test/src/core/config/
Dresource_manager.py23 from xdevice import DeviceTestType
186 … self.lite_device.execute_command_with_timeout(command, case_type=DeviceTestType.lite_cpp_test)
/test/testfwk/xdevice/src/xdevice/_core/testkit/
Dkit.py32 from _core.constants import DeviceTestType
163 exclude_list = json_data.get(DeviceTestType.cpp_test, [])
/test/testfwk/developer_test/src/core/testcase/
Dtestcase_manager.py31 from xdevice import DeviceTestType
157 Scheduler.update_test_type_in_source("OHRust", DeviceTestType.oh_rust_test)
/test/testfwk/developer_test/src/core/command/
Drun.py34 from xdevice import DeviceTestType
280 DeviceTestType.ctest_lite)
282 DeviceTestType.ctest_lite)
/test/testfwk/xdevice/plugins/ohos/src/ohos/testkit/
Dkit_lite.py40 from xdevice import DeviceTestType
283 case_type=DeviceTestType.cpp_test_lite)
509 command="cd /", case_type=DeviceTestType.cpp_test_lite)
512 case_type=DeviceTestType.cpp_test_lite)
/test/testfwk/xdevice/src/xdevice/
D__init__.py47 from _core.constants import DeviceTestType