Lines Matching refs:error_msg
43 bool Exec(const std::vector<std::string>& args, std::string* error_msg) { in Exec() argument
48 return ::art::Exec(exec_argv, error_msg); in Exec()
56 std::string error_msg; in TEST_F() local
57 ASSERT_FALSE(Exec({}, &error_msg)) << error_msg; in TEST_F()
61 std::string error_msg; in TEST_F() local
62 ASSERT_FALSE(Exec({"-o", "/non/existent/path", dex_file_}, &error_msg)) << error_msg; in TEST_F()
66 std::string error_msg; in TEST_F() local
67 ASSERT_FALSE(Exec({"-m", "joho", dex_file_}, &error_msg)) << error_msg; in TEST_F()
71 std::string error_msg; in TEST_F() local
72 ASSERT_TRUE(Exec({"-o", "/dev/null", dex_file_}, &error_msg)) << error_msg; in TEST_F()
76 std::string error_msg; in TEST_F() local
78 dex_file_}, &error_msg)) << error_msg; in TEST_F()