summaryrefslogtreecommitdiff
path: root/dexdump/dexdump_test.cc
diff options
context:
space:
mode:
author Aart Bik <ajcbik@google.com> 2015-07-08 11:30:04 -0700
committer Aart Bik <ajcbik@google.com> 2015-07-08 11:30:04 -0700
commitd10ee1ce1ccd92c003ec49c15edf339e74c13894 (patch)
tree65f85f5bdf5dbc4141fc556d3389d3a7ca9d40c7 /dexdump/dexdump_test.cc
parentd9acfe21f6eb09a22db69958dfb05c1f48f779bd (diff)
Make Art dexdump/list the real utilities.
Note: depends on pending CL that removes old dexdump/list and libdex. Bug: 22322814 Change-Id: I99259553f0f4655a633989feb8d67aa11de8b29d
Diffstat (limited to 'dexdump/dexdump_test.cc')
-rw-r--r--dexdump/dexdump_test.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/dexdump/dexdump_test.cc b/dexdump/dexdump_test.cc
index d9b210d767..9ae5d20b06 100644
--- a/dexdump/dexdump_test.cc
+++ b/dexdump/dexdump_test.cc
@@ -42,12 +42,11 @@ class DexDumpTest : public CommonRuntimeTest {
// Runs test with given arguments.
bool Exec(const std::vector<std::string>& args, std::string* error_msg) {
- // TODO(ajcbik): dexdump2 -> dexdump
std::string file_path = GetTestAndroidRoot();
if (IsHost()) {
- file_path += "/bin/dexdump2";
+ file_path += "/bin/dexdump";
} else {
- file_path += "/xbin/dexdump2";
+ file_path += "/xbin/dexdump";
}
EXPECT_TRUE(OS::FileExists(file_path.c_str())) << file_path << " should be a valid file path";
std::vector<std::string> exec_argv = { file_path };