Home | History | Annotate | Download | only in Support

Lines Matching defs:Error

34 #error sleep_for is not implemented on your platform.
88 std::string error;
98 /*secondsToWait=*/ 10, /*memoryLimit=*/ 0, &error,
100 EXPECT_FALSE(ExecutionFailed) << error;
126 std::string Error;
129 &Error, &ExecutionFailed);
130 ASSERT_FALSE(ExecutionFailed) << Error;
139 ProcessInfo WaitResult = Wait(PI1, 0, true, &Error);
140 ASSERT_TRUE(Error.empty());
148 &Error, &ExecutionFailed);
149 ASSERT_FALSE(ExecutionFailed) << Error;
156 ProcessInfo WaitResult = Wait(PI2, 0, false, &Error);
157 ASSERT_TRUE(Error.empty());
187 std::string Error;
191 &Error, &ExecutionFailed);
200 std::string Error;
203 &Error, &ExecutionFailed);
204 ASSERT_TRUE(RetCode < 0) << "On error ExecuteAndWait should return 0 or "
207 ASSERT_FALSE(Error.empty());
211 std::string Error;
214 &Error, &ExecutionFailed);
216 << "On error ExecuteNoWait should return an invalid ProcessInfo";
218 ASSERT_FALSE(Error.empty());