• Home
  • Raw
  • Download

Lines Matching refs:c_str

110   eth.SetArgs({ kPathToLinker, helper.c_str(), nullptr });  in TEST()
111 …eth.Run([&]() { execve(kPathToLinker, eth.GetArgs(), eth.GetEnv()); }, 0, expected_output.c_str()); in TEST()
125 eth.SetArgs({ kPathToLinker, helper.c_str(), nullptr }); in TEST()
126 …eth.Run([&]() { execve(kPathToLinker, eth.GetArgs(), eth.GetEnv()); }, 0, expected_output.c_str()); in TEST()
135 …&]() { execve(kPathToLinker, eth.GetArgs(), eth.GetEnv()); }, EXIT_FAILURE, error_message.c_str()); in TEST()
144 chmod(helper.c_str(), 0755); // TODO: "x" lost in CTS, b/34945607 in TEST()
146 eth.SetArgs({ helper.c_str(), nullptr }); in TEST()
147 eth.Run([&]() { execve(helper.c_str(), eth.GetArgs(), eth.GetEnv()); }, 0, nullptr); in TEST()
156 chmod(helper.c_str(), 0755); // TODO: "x" lost in CTS, b/34945607 in TEST()
158 eth.SetArgs({ helper.c_str(), nullptr }); in TEST()
159 eth.Run([&]() { execve(helper.c_str(), eth.GetArgs(), eth.GetEnv()); }, 0, nullptr); in TEST()
171 chmod(helper.c_str(), 0755); in TEST()
173 eth.SetArgs({ helper.c_str(), nullptr }); in TEST()
174 eth.Run([&]() { execve(helper.c_str(), eth.GetArgs(), eth.GetEnv()); }, 0, "12345"); in TEST()
183 chmod(helper.c_str(), 0755); in TEST()
185 eth.SetArgs({ helper.c_str(), nullptr }); in TEST()
186 eth.SetEnv({ env.c_str(), nullptr }); in TEST()
192 eth.Run([&]() { execve(helper.c_str(), eth.GetArgs(), eth.GetEnv()); }, 0, "54321"); in TEST()
210 chmod(helper.c_str(), 0755); in TEST()
212 eth.SetArgs({ helper.c_str(), nullptr }); in TEST()
213 …eth.Run([&]() { execve(helper.c_str(), eth.GetArgs(), eth.GetEnv()); }, EXIT_FAILURE, error_messag… in TEST()
255 chmod(helper.c_str(), 0755); in TEST()
257 eth.SetArgs({ helper.c_str(), nullptr }); in TEST()
258 eth.SetEnv({ env.c_str(), nullptr }); in TEST()
259 eth.Run([&]() { execve(helper.c_str(), eth.GetArgs(), eth.GetEnv()); }, 0, "12345"); in TEST()
279 chmod(helper.c_str(), 0755); in TEST()
281 eth.SetArgs({ helper.c_str(), nullptr }); in TEST()
282 eth.SetEnv({ env.c_str(), env2.c_str(), nullptr }); in TEST()
283 eth.Run([&]() { execve(helper.c_str(), eth.GetArgs(), eth.GetEnv()); }, 0, "54321"); in TEST()
308 chmod(helper.c_str(), 0755); in TEST()
310 eth.SetArgs({ helper.c_str(), nullptr }); in TEST()
311 eth.SetEnv({ env.c_str(), nullptr }); in TEST()
312 …eth.Run([&]() { execve(helper.c_str(), eth.GetArgs(), eth.GetEnv()); }, EXIT_FAILURE, error_messag… in TEST()