Lines Matching refs:iter
94 store::results_iterator iter = transaction.get_results(); in check_action_1() local
95 ATF_REQUIRE(!iter); in check_action_1()
161 store::results_iterator iter = transaction.get_results(); in check_action_2() local
162 ATF_REQUIRE(iter); in check_action_2()
163 ATF_REQUIRE_EQ(test_program_1, *iter.test_program()); in check_action_2()
164 ATF_REQUIRE_EQ("main", iter.test_case_name()); in check_action_2()
165 ATF_REQUIRE_EQ(result_1, iter.result()); in check_action_2()
166 ATF_REQUIRE(iter.stdout_contents().empty()); in check_action_2()
167 ATF_REQUIRE(iter.stderr_contents().empty()); in check_action_2()
168 ATF_REQUIRE_EQ(1357643611000000LL, iter.start_time().to_microseconds()); in check_action_2()
169 ATF_REQUIRE_EQ(1357643621000500LL, iter.end_time().to_microseconds()); in check_action_2()
171 ++iter; in check_action_2()
172 ATF_REQUIRE(iter); in check_action_2()
173 ATF_REQUIRE_EQ(test_program_5, *iter.test_program()); in check_action_2()
174 ATF_REQUIRE_EQ("main", iter.test_case_name()); in check_action_2()
175 ATF_REQUIRE_EQ(result_5, iter.result()); in check_action_2()
176 ATF_REQUIRE(iter.stdout_contents().empty()); in check_action_2()
177 ATF_REQUIRE(iter.stderr_contents().empty()); in check_action_2()
178 ATF_REQUIRE_EQ(1357643632000000LL, iter.start_time().to_microseconds()); in check_action_2()
179 ATF_REQUIRE_EQ(1357643638000000LL, iter.end_time().to_microseconds()); in check_action_2()
181 ++iter; in check_action_2()
182 ATF_REQUIRE(iter); in check_action_2()
183 ATF_REQUIRE_EQ(test_program_2, *iter.test_program()); in check_action_2()
184 ATF_REQUIRE_EQ("main", iter.test_case_name()); in check_action_2()
185 ATF_REQUIRE_EQ(result_2, iter.result()); in check_action_2()
186 ATF_REQUIRE_EQ("Test stdout", iter.stdout_contents()); in check_action_2()
187 ATF_REQUIRE_EQ("Test stderr", iter.stderr_contents()); in check_action_2()
188 ATF_REQUIRE_EQ(1357643622001200LL, iter.start_time().to_microseconds()); in check_action_2()
189 ATF_REQUIRE_EQ(1357643622900021LL, iter.end_time().to_microseconds()); in check_action_2()
191 ++iter; in check_action_2()
192 ATF_REQUIRE(iter); in check_action_2()
193 ATF_REQUIRE_EQ(test_program_3, *iter.test_program()); in check_action_2()
194 ATF_REQUIRE_EQ("main", iter.test_case_name()); in check_action_2()
195 ATF_REQUIRE_EQ(result_3, iter.result()); in check_action_2()
196 ATF_REQUIRE(iter.stdout_contents().empty()); in check_action_2()
197 ATF_REQUIRE(iter.stderr_contents().empty()); in check_action_2()
198 ATF_REQUIRE_EQ(1357643623500000LL, iter.start_time().to_microseconds()); in check_action_2()
199 ATF_REQUIRE_EQ(1357643630981932LL, iter.end_time().to_microseconds()); in check_action_2()
201 ++iter; in check_action_2()
202 ATF_REQUIRE(iter); in check_action_2()
203 ATF_REQUIRE_EQ(test_program_4, *iter.test_program()); in check_action_2()
204 ATF_REQUIRE_EQ("main", iter.test_case_name()); in check_action_2()
205 ATF_REQUIRE_EQ(result_4, iter.result()); in check_action_2()
206 ATF_REQUIRE(iter.stdout_contents().empty()); in check_action_2()
207 ATF_REQUIRE(iter.stderr_contents().empty()); in check_action_2()
208 ATF_REQUIRE_EQ(1357643631000000LL, iter.start_time().to_microseconds()); in check_action_2()
209 ATF_REQUIRE_EQ(1357643631020000LL, iter.end_time().to_microseconds()); in check_action_2()
211 ++iter; in check_action_2()
212 ATF_REQUIRE(!iter); in check_action_2()
281 store::results_iterator iter = transaction.get_results(); in check_action_3() local
282 ATF_REQUIRE(iter); in check_action_3()
283 ATF_REQUIRE_EQ(test_program_6, *iter.test_program()); in check_action_3()
284 ATF_REQUIRE_EQ("this_fails", iter.test_case_name()); in check_action_3()
285 ATF_REQUIRE_EQ(result_7, iter.result()); in check_action_3()
286 ATF_REQUIRE(iter.stdout_contents().empty()); in check_action_3()
287 ATF_REQUIRE(iter.stderr_contents().empty()); in check_action_3()
288 ATF_REQUIRE_EQ(1357648719000000LL, iter.start_time().to_microseconds()); in check_action_3()
289 ATF_REQUIRE_EQ(1357648720897182LL, iter.end_time().to_microseconds()); in check_action_3()
291 ++iter; in check_action_3()
292 ATF_REQUIRE(iter); in check_action_3()
293 ATF_REQUIRE_EQ(test_program_6, *iter.test_program()); in check_action_3()
294 ATF_REQUIRE_EQ("this_passes", iter.test_case_name()); in check_action_3()
295 ATF_REQUIRE_EQ(result_6, iter.result()); in check_action_3()
296 ATF_REQUIRE(iter.stdout_contents().empty()); in check_action_3()
297 ATF_REQUIRE(iter.stderr_contents().empty()); in check_action_3()
298 ATF_REQUIRE_EQ(1357648712000000LL, iter.start_time().to_microseconds()); in check_action_3()
299 ATF_REQUIRE_EQ(1357648718000000LL, iter.end_time().to_microseconds()); in check_action_3()
301 ++iter; in check_action_3()
302 ATF_REQUIRE(iter); in check_action_3()
303 ATF_REQUIRE_EQ(test_program_6, *iter.test_program()); in check_action_3()
304 ATF_REQUIRE_EQ("this_skips", iter.test_case_name()); in check_action_3()
305 ATF_REQUIRE_EQ(result_8, iter.result()); in check_action_3()
306 ATF_REQUIRE_EQ("Another stdout", iter.stdout_contents()); in check_action_3()
307 ATF_REQUIRE(iter.stderr_contents().empty()); in check_action_3()
308 ATF_REQUIRE_EQ(1357648729182013LL, iter.start_time().to_microseconds()); in check_action_3()
309 ATF_REQUIRE_EQ(1357648730000000LL, iter.end_time().to_microseconds()); in check_action_3()
311 ++iter; in check_action_3()
312 ATF_REQUIRE(iter); in check_action_3()
313 ATF_REQUIRE_EQ(test_program_7, *iter.test_program()); in check_action_3()
314 ATF_REQUIRE_EQ("main", iter.test_case_name()); in check_action_3()
315 ATF_REQUIRE_EQ(result_9, iter.result()); in check_action_3()
316 ATF_REQUIRE(iter.stdout_contents().empty()); in check_action_3()
317 ATF_REQUIRE_EQ("Another stderr", iter.stderr_contents()); in check_action_3()
318 ATF_REQUIRE_EQ(1357648740120000LL, iter.start_time().to_microseconds()); in check_action_3()
319 ATF_REQUIRE_EQ(1357648750081700LL, iter.end_time().to_microseconds()); in check_action_3()
321 ++iter; in check_action_3()
322 ATF_REQUIRE(!iter); in check_action_3()
372 store::results_iterator iter = transaction.get_results(); in check_action_4() local
373 ATF_REQUIRE(iter); in check_action_4()
374 ATF_REQUIRE_EQ(test_program_9, *iter.test_program()); in check_action_4()
375 ATF_REQUIRE_EQ("this_fails", iter.test_case_name()); in check_action_4()
376 ATF_REQUIRE_EQ(result_12, iter.result()); in check_action_4()
377 ATF_REQUIRE(iter.stdout_contents().empty()); in check_action_4()
378 ATF_REQUIRE(iter.stderr_contents().empty()); in check_action_4()
379 ATF_REQUIRE_EQ(1357644397100000LL, iter.start_time().to_microseconds()); in check_action_4()
380 ATF_REQUIRE_EQ(1357644399005000LL, iter.end_time().to_microseconds()); in check_action_4()
382 ++iter; in check_action_4()
383 ATF_REQUIRE(iter); in check_action_4()
384 ATF_REQUIRE_EQ(test_program_9, *iter.test_program()); in check_action_4()
385 ATF_REQUIRE_EQ("this_passes", iter.test_case_name()); in check_action_4()
386 ATF_REQUIRE_EQ(result_11, iter.result()); in check_action_4()
387 ATF_REQUIRE(iter.stdout_contents().empty()); in check_action_4()
388 ATF_REQUIRE(iter.stderr_contents().empty()); in check_action_4()
389 ATF_REQUIRE_EQ(1357644396500000LL, iter.start_time().to_microseconds()); in check_action_4()
390 ATF_REQUIRE_EQ(1357644397000000LL, iter.end_time().to_microseconds()); in check_action_4()
392 ++iter; in check_action_4()
393 ATF_REQUIRE(iter); in check_action_4()
394 ATF_REQUIRE_EQ(test_program_8, *iter.test_program()); in check_action_4()
395 ATF_REQUIRE_EQ("main", iter.test_case_name()); in check_action_4()
396 ATF_REQUIRE_EQ(result_10, iter.result()); in check_action_4()
397 ATF_REQUIRE_EQ("Test stdout", iter.stdout_contents()); in check_action_4()
398 ATF_REQUIRE_EQ("Test stderr", iter.stderr_contents()); in check_action_4()
399 ATF_REQUIRE_EQ(1357644395000000LL, iter.start_time().to_microseconds()); in check_action_4()
400 ATF_REQUIRE_EQ(1357644396000000LL, iter.end_time().to_microseconds()); in check_action_4()
402 ++iter; in check_action_4()
403 ATF_REQUIRE(!iter); in check_action_4()