summaryrefslogtreecommitdiff
path: root/dexlist/dexlist_test.cc
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 /dexlist/dexlist_test.cc
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 'dexlist/dexlist_test.cc')
-rw-r--r--dexlist/dexlist_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/dexlist/dexlist_test.cc b/dexlist/dexlist_test.cc
index 32bc735487..fa17a2f834 100644
--- a/dexlist/dexlist_test.cc
+++ b/dexlist/dexlist_test.cc
@@ -41,7 +41,7 @@ class DexListTest : public CommonRuntimeTest {
// Runs test with given arguments.
bool Exec(const std::vector<std::string>& args, std::string* error_msg) {
- std::string file_path = GetAndroidRuntimeBinDir() + "/dexlist";
+ std::string file_path = GetArtBinDir() + "/dexlist";
EXPECT_TRUE(OS::FileExists(file_path.c_str())) << file_path << " should be a valid file path";
std::vector<std::string> exec_argv = { file_path };
exec_argv.insert(exec_argv.end(), args.begin(), args.end());