Lines Matching refs:error_msg
43 bool Exec(const std::vector<std::string>& args, std::string* error_msg) { in Exec() argument
49 return ::art::Exec(exec_argv, error_msg); in Exec()
57 std::string error_msg; in TEST_F() local
58 ASSERT_FALSE(Exec({}, &error_msg)) << error_msg; in TEST_F()
62 std::string error_msg; in TEST_F() local
63 ASSERT_FALSE(Exec({"-o", "/non/existent/path", dex_file_}, &error_msg)) << error_msg; in TEST_F()
67 std::string error_msg; in TEST_F() local
68 ASSERT_FALSE(Exec({"-m", "joho", dex_file_}, &error_msg)) << error_msg; in TEST_F()
72 std::string error_msg; in TEST_F() local
73 ASSERT_TRUE(Exec({"-o", "/dev/null", dex_file_}, &error_msg)) << error_msg; in TEST_F()
77 std::string error_msg; in TEST_F() local
79 dex_file_}, &error_msg)) << error_msg; in TEST_F()