blob: ca5219aa25720dbf8671bc0ebd3394b15675e7f3 [file] [log] [blame]
Roland Levillaine4f1c512017-10-30 13:28:28 +00001#!/bin/bash
2#
3# Copyright (C) 2017 The Android Open Source Project
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16
17green='\033[0;32m'
18nc='\033[0m'
19
20# Setup as root, as device cleanup requires it.
21adb root
22adb wait-for-device
23
24if [[ -n "$ART_TEST_CHROOT" ]]; then
25 # Check that ART_TEST_CHROOT is correctly defined.
26 if [[ "x$ART_TEST_CHROOT" != x/* ]]; then
27 echo "$ART_TEST_CHROOT is not an absolute path"
28 exit 1
29 fi
30
31 echo -e "${green}Clean up /system in chroot${nc}"
32 # Remove all files under /system except the potential property_contexts file.
33 #
34 # The current ART Buildbot set-up runs the "setup device" step
35 # (performed by script tools/setup-buildbot-device.sh) before the
36 # "device cleanup" step (implemented by this script). As
37 # property_contexts file aliases are created during the former step,
38 # we need this exception to prevent the property_contexts file under
39 # /system in the chroot from being removed by the latter step.
40 #
41 # TODO: Reorder ART Buildbot steps so that "device cleanup" happens
42 # before "setup device" and remove this special case.
Roland Levillaina85eef72018-05-29 16:11:28 +010043 adb shell test -d "$ART_TEST_CHROOT/system" \
Roland Levillain59df4f82018-05-23 18:21:36 +010044 "&&" find "$ART_TEST_CHROOT/system" \
45 ! -path "$ART_TEST_CHROOT/system/etc/selinux/plat_property_contexts" \
46 ! -type d \
47 -exec rm -f \{\} +
Roland Levillaine4f1c512017-10-30 13:28:28 +000048
49 echo -e "${green}Clean up some subdirs in /data in chroot${nc}"
50 adb shell rm -rf \
51 "$ART_TEST_CHROOT/data/local/tmp/*" \
52 "$ART_TEST_CHROOT/data/art-test" \
53 "$ART_TEST_CHROOT/data/nativetest" \
54 "$ART_TEST_CHROOT/data/nativetest64" \
55 "$ART_TEST_CHROOT/data/run-test" \
56 "$ART_TEST_CHROOT/data/dalvik-cache/*" \
57 "$ART_TEST_CHROOT/data/misc/trace/*"
58else
59 adb shell rm -rf \
60 /data/local/tmp /data/art-test /data/nativetest /data/nativetest64 '/data/misc/trace/*'
61fi