diff options
author | 2019-09-20 15:53:40 +0100 | |
---|---|---|
committer | 2019-09-24 17:40:00 +0000 | |
commit | e58624f221b967553d7b71f14d8677ceaa000553 (patch) | |
tree | 00d6caa5ca66562d9c8e448abc77c0c6018fca0c /tools/hiddenapi/hiddenapi_test.cc | |
parent | 48349ad38887f65da76df268f8e548d508d8c6a1 (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 'tools/hiddenapi/hiddenapi_test.cc')
-rw-r--r-- | tools/hiddenapi/hiddenapi_test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/hiddenapi/hiddenapi_test.cc b/tools/hiddenapi/hiddenapi_test.cc index 337fae4850..41eb4db9cc 100644 --- a/tools/hiddenapi/hiddenapi_test.cc +++ b/tools/hiddenapi/hiddenapi_test.cc @@ -31,7 +31,7 @@ namespace art { class HiddenApiTest : public CommonRuntimeTest { protected: std::string GetHiddenApiCmd() { - std::string file_path = GetAndroidRuntimeBinDir() + "/hiddenapi"; + std::string file_path = GetArtBinDir() + "/hiddenapi"; if (kIsDebugBuild) { file_path += 'd'; } |