Home
last modified time | relevance | path

Searched refs:ART_TEST_CHROOT (Results 1 – 11 of 11) sorted by relevance

/aosp12/art/tools/
H A Dbuildbot-setup-device.sh123 if [[ -n "$ART_TEST_CHROOT" ]]; then
128 [[ "x$ART_TEST_CHROOT" = x/* ]] || { echo "$ART_TEST_CHROOT is not an absolute path"; exit 1; }
131 adb shell mkdir -p "$ART_TEST_CHROOT"
148 "&&" cp -f "$f" "$ART_TEST_CHROOT$f"
152 adb shell mkdir -p "$ART_TEST_CHROOT/tmp"
158 adb shell test -L "$ART_TEST_CHROOT/etc" \
162 adb shell mkdir -p "$ART_TEST_CHROOT/proc"
167 adb shell mkdir -p "$ART_TEST_CHROOT/sys"
175 adb shell mkdir -p "$ART_TEST_CHROOT/dev"
180 adb shell mkdir -p "$ART_TEST_CHROOT/apex"
[all …]
H A Dbuildbot-teardown-device.sh30 if [[ -n "$ART_TEST_CHROOT" ]]; then
32 [[ "x$ART_TEST_CHROOT" = x/* ]] || { echo "$ART_TEST_CHROOT is not an absolute path"; exit 1; }
34 if adb shell test -d "$ART_TEST_CHROOT"; then
38 adb shell lsof | grep "$ART_TEST_CHROOT"
84 local dir="$ART_TEST_CHROOT/$dir_in_chroot"
96 adb shell rm -f "$ART_TEST_CHROOT/bin"
99 adb shell rm -rf "$ART_TEST_CHROOT/apex"
115 adb shell rm -f "$ART_TEST_CHROOT/etc"
116 adb shell rm -rf "$ART_TEST_CHROOT/system/etc"
121 adb shell rm -rf "$ART_TEST_CHROOT/tmp"
[all …]
H A Dbuildbot-cleanup-device.sh27 if [[ -n "$ART_TEST_CHROOT" ]]; then
29 if [[ "x$ART_TEST_CHROOT" != x/* ]]; then
30 echo "$ART_TEST_CHROOT is not an absolute path"
34 if adb shell test -d "$ART_TEST_CHROOT"; then
36 adb shell rm -rf "$ART_TEST_CHROOT/linkerconfig"
39 adb shell rm -rf "$ART_TEST_CHROOT/system"
42 adb shell rm -rf "$ART_TEST_CHROOT/data"
45 adb shell rmdir "$ART_TEST_CHROOT" || adb shell ls -la "$ART_TEST_CHROOT"
H A Dbuildbot-sync.sh44 if [[ -z "$ART_TEST_CHROOT" ]]; then
62 adb shell mkdir -p "$ART_TEST_CHROOT/$dir"
63 adb push $dir "$ART_TEST_CHROOT/$(dirname $dir)"
70 "$ART_TEST_CHROOT/system/etc/public.libraries.txt"
73 adb shell mkdir -p "$ART_TEST_CHROOT/system/framework"
78 adb shell mkdir -p "$ART_TEST_CHROOT/apex"
98 adb shell rm -rf "$ART_TEST_CHROOT/apex/${dst_apex}"
99 adb push $src_apex_path "$ART_TEST_CHROOT/apex/${dst_apex}"
H A Drun-gtests.sh27 if [[ -z "$ART_TEST_CHROOT" ]]; then
47 tests=$("$adb" shell chroot "$ART_TEST_CHROOT" \
55 "$adb" shell chroot "$ART_TEST_CHROOT" \
H A Drun-jdwp-tests.sh256 if [[ -n "$ART_TEST_CHROOT" ]]; then
258 chroot_option="--chroot $ART_TEST_CHROOT"
H A Drun-libcore-tests.py48 ART_TEST_CHROOT = os.environ.get("ART_TEST_CHROOT") variable
175 if ART_TEST_CHROOT:
/aosp12/art/test/
H A DREADME.chroot.md11 setting up a chroot directory in a `ART_TEST_CHROOT` directory located under
12 `/data/local` (e.g. `ART_TEST_CHROOT=/data/local/art-test-chroot`) on a device,
14 shell chroot $ART_TEST_CHROOT <command>` to execute commands on the device
47 1. Set the chroot directory in `ART_TEST_CHROOT`:
49 export ART_TEST_CHROOT=/data/local/art-test-chroot
H A DREADME.arm_fvp.md148 export ART_TEST_CHROOT=/data/local/art-test-chroot
/aosp12/art/test/testrunner/
H A Denv.py87 ART_TEST_CHROOT = _env.get('ART_TEST_CHROOT') variable
H A Dtestrunner.py491 if env.ART_TEST_CHROOT:
492 options_test += ' --chroot ' + env.ART_TEST_CHROOT