Lines Matching refs:Error
35 #error sleep_for is not implemented on your platform.
43 << "error number: " << ASSERT_NO_ERROR_ec.value() << "\n" \
44 << "error message: " << ASSERT_NO_ERROR_ec.message() << "\n"; \
149 std::string Error;
153 /*secondsToWait=*/ 10, /*memoryLimit=*/ 0, &Error,
155 EXPECT_FALSE(ExecutionFailed) << Error;
186 std::string error;
196 /*secondsToWait=*/ 10, /*memoryLimit=*/ 0, &error,
198 EXPECT_FALSE(ExecutionFailed) << error;
221 std::string Error;
224 &Error, &ExecutionFailed);
225 ASSERT_FALSE(ExecutionFailed) << Error;
234 ProcessInfo WaitResult = Wait(PI1, 0, true, &Error);
235 ASSERT_TRUE(Error.empty());
243 &Error, &ExecutionFailed);
244 ASSERT_FALSE(ExecutionFailed) << Error;
251 ProcessInfo WaitResult = Wait(PI2, 0, false, &Error);
252 ASSERT_TRUE(Error.empty());
279 std::string Error;
283 &Error, &ExecutionFailed);
292 std::string Error;
295 &Error, &ExecutionFailed);
296 ASSERT_TRUE(RetCode < 0) << "On error ExecuteAndWait should return 0 or "
299 ASSERT_FALSE(Error.empty());
303 std::string Error;
306 &Error, &ExecutionFailed);
308 << "On error ExecuteNoWait should return an invalid ProcessInfo";
310 ASSERT_FALSE(Error.empty());