xts_dcts/testtools/config/dcts.json
sunmingze 58ec11eee1 delete code
Signed-off-by: youngshady <sunmingze3@huawei.com>
2023-08-14 10:34:58 +08:00

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"
]
}
]
}