diff options
author | 2016-01-19 15:59:16 +0000 | |
---|---|---|
committer | 2016-01-19 15:59:16 +0000 | |
commit | 91d65e024846717fce3572106cffe9b957b8902c (patch) | |
tree | 22ea1a91afdd552a31bb2365a9eae034ae0a1c9b /runtime/prebuilt_tools_test.cc | |
parent | 1bcbcf8e848d18b19d248c3d15f77c888f2b5f04 (diff) |
Fix various typos in ART's comments and string literals.
Change-Id: I85d628055b1a61647a77fef730c9631c234e22a2
Diffstat (limited to 'runtime/prebuilt_tools_test.cc')
-rw-r--r-- | runtime/prebuilt_tools_test.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/prebuilt_tools_test.cc b/runtime/prebuilt_tools_test.cc index a7f7bcd134..eb226d496a 100644 --- a/runtime/prebuilt_tools_test.cc +++ b/runtime/prebuilt_tools_test.cc @@ -34,7 +34,7 @@ static void CheckToolsExist(const std::string& tools_dir) { struct stat exec_st; std::string exec_path = tools_dir + tool; if (stat(exec_path.c_str(), &exec_st) != 0) { - ADD_FAILURE() << "Can not find " << tool << " in " << tools_dir; + ADD_FAILURE() << "Cannot find " << tool << " in " << tools_dir; } } } @@ -42,7 +42,7 @@ static void CheckToolsExist(const std::string& tools_dir) { TEST_F(PrebuiltToolsTest, CheckHostTools) { std::string tools_dir = GetAndroidHostToolsDir(); if (tools_dir.empty()) { - ADD_FAILURE() << "Can not find Android tools directory for host"; + ADD_FAILURE() << "Cannot find Android tools directory for host"; } else { CheckToolsExist(tools_dir); } @@ -54,7 +54,7 @@ TEST_F(PrebuiltToolsTest, CheckTargetTools) { for (InstructionSet isa : isas) { std::string tools_dir = GetAndroidTargetToolsDir(isa); if (tools_dir.empty()) { - ADD_FAILURE() << "Can not find Android tools directory for " << isa; + ADD_FAILURE() << "Cannot find Android tools directory for " << isa; } else { CheckToolsExist(tools_dir); } |