Lines Matching full:aborted

202     unsigned int aborted;      /* Whether the set was aborted. */  member
581 puts("ABORTED"); in test_start()
590 puts("ABORTED"); in test_start()
702 printf("ABORTED (invalid test number %ld)\n", n); in invalid_test_number()
703 ts->aborted = 1; in invalid_test_number()
750 ts->aborted = 1; in test_plan()
760 puts("ABORTED (invalid test count)"); in test_plan()
761 ts->aborted = 1; in test_plan()
818 printf("ABORTED (%.*s)\n", (int) length, bail); in test_checkline()
821 ts->aborted = 1; in test_checkline()
847 puts("ABORTED (multiple plans)"); in test_checkline()
848 ts->aborted = 1; in test_checkline()
903 printf("ABORTED (duplicate test number %lu)\n", current); in test_checkline()
904 ts->aborted = 1; in test_checkline()
998 if (ts->aborted) { in test_summarize()
999 fputs("ABORTED", stdout); in test_summarize()
1081 puts("ABORTED (can't dup file descriptors)"); in test_analyze()
1085 puts("ABORTED (execution failed -- not found?)"); in test_analyze()
1090 puts("ABORTED (can't open /dev/null)"); in test_analyze()
1101 puts("ABORTED (no valid test plan)"); in test_analyze()
1102 ts->aborted = 1; in test_analyze()
1129 puts("ABORTED"); in test_run()
1138 while (!ts->aborted && fgets(buffer, sizeof(buffer), output)) { in test_run()
1144 ts->aborted = 1; in test_run()
1160 puts("ABORTED"); in test_run()
1166 ts->aborted = 0; in test_run()
1205 if (ts->aborted) { in test_fail_summary()
1206 puts("aborted"); in test_fail_summary()
1538 unsigned long aborted = 0; in test_batch() local
1579 aborted += ts->aborted; in test_batch()
1625 if (aborted != 0) { in test_batch()
1626 if (aborted == 1) in test_batch()
1627 printf("Aborted %lu test set", aborted); in test_batch()
1629 printf("Aborted %lu test sets", aborted); in test_batch()
1648 return (failed == 0 && aborted == 0); in test_batch()