summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--build/Android.gtest.mk22
-rw-r--r--test/README.atest.md4
2 files changed, 2 insertions, 24 deletions
diff --git a/build/Android.gtest.mk b/build/Android.gtest.mk
index c83b3d17ab..e08b5ac2e3 100644
--- a/build/Android.gtest.mk
+++ b/build/Android.gtest.mk
@@ -71,28 +71,6 @@ my_files :=
include $(CLEAR_VARS)
###################################################################################################
-# Create a phony module that contains data needed for ART chroot-based testing.
-include $(CLEAR_VARS)
-LOCAL_MODULE := art_chroot
-LOCAL_LICENSE_KINDS := SPDX-license-identifier-Apache-2.0
-LOCAL_LICENSE_CONDITIONS := notice
-LOCAL_NOTICE_FILE := $(LOCAL_PATH)/../NOTICE
-LOCAL_MODULE_TAGS := tests
-LOCAL_MODULE_CLASS := NATIVE_TESTS
-LOCAL_MODULE_SUFFIX := .txt
-LOCAL_COMPATIBILITY_SUITE := general-tests
-LOCAL_COMPATIBILITY_SUPPORT_FILES := \
- $(foreach apex,$(TESTING_ART_APEX) $(RUNTIME_APEX) $(CONSCRYPT_APEX) $(I18N_APEX),\
- $(PRODUCT_OUT)/system/apex/$(apex).apex:system/apex/$(apex).apex)
-include $(BUILD_SYSTEM)/base_rules.mk
-
-$(LOCAL_BUILT_MODULE):
- @mkdir -p $(dir $@)
- echo "This directory contains common data and tools needed for ART target tests" > $@
-
-include $(CLEAR_VARS)
-###################################################################################################
-
# The path for which all the dex files are relative, not actually the current directory.
LOCAL_PATH := art/test
diff --git a/test/README.atest.md b/test/README.atest.md
index 42ce294ade..ea6685b536 100644
--- a/test/README.atest.md
+++ b/test/README.atest.md
@@ -126,10 +126,10 @@ atest ArtGtestsTargetInstallApex -- \
### Running ART gtests on device using a `chroot` environment
You can run ART gtests on device with the chroot-based strategy by using the
-following commands:
+following command:
```bash
-m art_chroot && atest ArtGtestsTargetChroot
+atest ArtGtestsTargetChroot
```
This sequence: