diff options
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); } |