mirror of
https://gitee.com/openharmony/xts_dcts
synced 2024-11-27 09:50:32 +00:00
58ec11eee1
Signed-off-by: youngshady <sunmingze3@huawei.com>
33 lines
984 B
JSON
33 lines
984 B
JSON
{
|
|
"description": "Common configurations for running dcts modules",
|
|
"kits": [
|
|
{
|
|
"type": "PropertyCheckKit",
|
|
"property-name": "ro.build.type",
|
|
"expected-value": "user",
|
|
"throw-error": "false"
|
|
},
|
|
{
|
|
"type": "PropertyCheckKit",
|
|
"property-name": "ro.product.locale",
|
|
"expected-value": "en-US",
|
|
"throw-error": "false"
|
|
},
|
|
{
|
|
"type": "ShellKit",
|
|
"run-command": [
|
|
"remount",
|
|
"mkdir /data/data/resource",
|
|
"chmod -R 777 /data/data/resource",
|
|
"settings put global verifier_verify_hdc_installs 0",
|
|
"settings put secure hdc_install_need_confirm 0",
|
|
"settings put secure smart_suggestion_enable 1"
|
|
],
|
|
"teardown-command": [
|
|
"remount",
|
|
"rm -rf /data/data/resource"
|
|
]
|
|
}
|
|
]
|
|
}
|