summaryrefslogtreecommitdiff
path: root/build/apex/art_apex_test.py
diff options
context:
space:
mode:
author Martin Stjernholm <mast@google.com> 2019-09-20 15:53:40 +0100
committer Martin Stjernholm <mast@google.com> 2019-09-24 17:40:00 +0000
commite58624f221b967553d7b71f14d8677ceaa000553 (patch)
tree00d6caa5ca66562d9c8e448abc77c0c6018fca0c /build/apex/art_apex_test.py
parent48349ad38887f65da76df268f8e548d508d8c6a1 (diff)
Various renames following the name change from "Runtime APEX" to "ART APEX".
In particular ANDROID_RUNTIME_ROOT is now ANDROID_ART_ROOT. Test: Build & boot Test: art/tools/run-gtests.sh in chroot Test: art/test/testrunner/testrunner.py --target --64 in chroot Test: art/tools/run-libcore-tests.sh --mode=device --variant=X64 in chroot Test: art/tools/run-jdwp-tests.sh --mode=device --variant=X64 in chroot Test: m test-art-host-gtest Test: art/test/testrunner/testrunner.py --host --64 Test: art/tools/run-jdwp-tests.sh --mode=host Bug: 135753770 Change-Id: Ia74da964e54cf396d66e9e12ea56da4e9483662a
Diffstat (limited to 'build/apex/art_apex_test.py')
-rwxr-xr-xbuild/apex/art_apex_test.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/build/apex/art_apex_test.py b/build/apex/art_apex_test.py
index 6d29fc9769..ee372f4856 100755
--- a/build/apex/art_apex_test.py
+++ b/build/apex/art_apex_test.py
@@ -29,10 +29,10 @@ logging.basicConfig(format='%(message)s')
# Architectures supported by APEX packages.
archs = ["arm", "arm64", "x86", "x86_64"]
-# Directory containing ART tests within a Runtime APEX (if the package includes
+# Directory containing ART tests within an ART APEX (if the package includes
# any). ART test executables are installed in `bin/art/<arch>`. Segregating
# tests by architecture is useful on devices supporting more than one
-# architecture, as it permits testing all of them using a single Runtime APEX
+# architecture, as it permits testing all of them using a single ART APEX
# package.
art_test_dir = 'bin/art'
@@ -1223,7 +1223,7 @@ def art_apex_test_default(test_parser):
if __name__ == "__main__":
- parser = argparse.ArgumentParser(description='Check integrity of a Runtime APEX.')
+ parser = argparse.ArgumentParser(description='Check integrity of an ART APEX.')
parser.add_argument('apex', help='APEX file input')