diff options
| author | 2019-06-07 14:07:58 +0100 | |
|---|---|---|
| committer | 2019-06-19 15:45:50 +0000 | |
| commit | f8528fae3ce1a8971ab6e06a9f28b5c557a8114f (patch) | |
| tree | 7f381ecb5f8c18397e047e85d44477635f37dcba | |
| parent | 1cf31fe27799bad9a56966dbd0c7b43c07257676 (diff) | |
Remove unnecessary files from target test env
Remove unnecessary files from the simulation of the
runtime mainline module used in ART for on-device testing.
The files are being removed from the real runtime module
in a separate commit.
Bug: 132169989
Test: Run ART tests on device (in chroot environment)
Change-Id: I93f5720c6e110ffe555cc37eb4b8c5310fd6bb0d
| -rw-r--r-- | Android.mk | 7 | ||||
| -rwxr-xr-x | tools/buildbot-build.sh | 10 |
2 files changed, 1 insertions, 16 deletions
diff --git a/Android.mk b/Android.mk index 72b60e7351..dc0390e071 100644 --- a/Android.mk +++ b/Android.mk @@ -602,10 +602,7 @@ standalone-apex-files: libc.bootstrap libdl.bootstrap libm.bootstrap linker com. # Also include: # - a copy of the ICU prebuilt .dat file in /system/etc/icu on target # (see module `icu-data-art-test-runtime`); and -# - a copy of the time zone data prebuilt files in /system/etc/tz on -# target, (see modules `tzdata-art-test-runtime`, -# `tzlookup.xml-art-test-runtime`, and `tz_version-art-test-runtime`) -# so that they can be found even if the Runtime APEX is not available, +# so that it can be found even if the Runtime APEX is not available, # by setting the environment variable `ART_TEST_ANDROID_RUNTIME_ROOT` # to "/system" on device. This is a temporary change needed # until Golem fully supports the Runtime APEX. @@ -635,8 +632,6 @@ build-art-target-golem: dex2oat dalvikvm linker libstdc++ \ $(TARGET_CORE_IMG_OUT_BASE)-interpreter.art \ libc.bootstrap libdl.bootstrap libm.bootstrap \ icu-data-art-test-runtime \ - tzdata-art-test-runtime tzlookup.xml-art-test-runtime \ - tz_version-art-test-runtime \ tzdata-art-test-tzdata tzlookup.xml-art-test-tzdata \ tz_version-art-test-tzdata icu_overlay-art-test-tzdata \ standalone-apex-files diff --git a/tools/buildbot-build.sh b/tools/buildbot-build.sh index cf743b3e3b..595d63a5f4 100755 --- a/tools/buildbot-build.sh +++ b/tools/buildbot-build.sh @@ -101,16 +101,6 @@ elif [[ $mode == "target" ]]; then # TODO(b/121117762, b/129332183): Remove this when the ART Buildbot and Golem # have full support for the Runtime APEX. make_command+=" icu-data-art-test-runtime" - # Create a copy of the runtime module prebuilt time zone data files in - # /system/etc/tz on target, so that they can be found even if the Runtime APEX - # is not available, by setting the environment variable - # `ART_TEST_ANDROID_RUNTIME_ROOT` to "/system" on device. This is a temporary - # change needed until both the ART Buildbot and Golem fully support the - # Runtime APEX. - # - # TODO(b/121117762, b/129332183): Remove this when the ART Buildbot and Golem - # have full support for the Runtime APEX. - make_command+=" tzdata-art-test-runtime tzlookup.xml-art-test-runtime tz_version-art-test-runtime" # Create a copy of the time zone data module prebuilt time zone data files in # /system/etc/tzdata_module/etc on target, so that they can be found even if # the Time Zone Data APEX is not available, by setting the environment |