summaryrefslogtreecommitdiff
path: root/dexdump/dexdump_test.cc
diff options
context:
space:
mode:
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 };