Home
last modified time | relevance | path

Searched refs:has_errors (Results 1 – 12 of 12) sorted by relevance

/openbsd-src/gnu/usr.bin/perl/cpan/Test-Harness/lib/TAP/Parser/
H A DAggregator.pm261 && !$self->has_errors;
279 ( $self->has_errors || $total != $passed ) ? 'FAIL'
347 Identical to C<has_errors>, but also returns true if any TODO tests
355 || $self->has_errors;
360 =head3 C<has_errors>
362 if ( $parser->has_errors ) {
380 sub has_errors { subroutine
/openbsd-src/usr.bin/make/
H A Denginechoice.c48 engine_run_list(Lst l, bool *has_errors, bool *out_of_date) in engine_run_list() argument
50 engine->run_list(l, has_errors, out_of_date); in engine_run_list()
H A Dcompat.c260 Compat_Run(Lst targs, bool *has_errors, bool *out_of_date) in Compat_Run() argument
283 *has_errors = true; in Compat_Run()
H A Dmake.c534 Make_Run(Lst targs, bool *has_errors, bool *out_of_date) in Make_Run() argument
575 *has_errors = true; in Make_Run()
583 *has_errors = true; in Make_Run()
H A Dmain.c632 run_node(GNode *gn, bool *has_errors, bool *out_of_date) in run_node() argument
638 engine_run_list(&l, has_errors, out_of_date); in run_node()
/openbsd-src/gnu/usr.bin/perl/cpan/Test-Harness/t/
H A Daggregator.t116 ok $agg->has_errors, '... and it should report true if there are errors';
215 ok !$agg->has_errors, '.... but it should not report any errors';
H A Dperl5lib.t50 ok( !$h->runtests('perl5lib_check.t.tmp')->has_errors );
/openbsd-src/gnu/usr.bin/perl/cpan/Test-Simple/lib/Test2/API/
H A DInterceptResult.pm120 sub errors { shift->grep(has_errors => @_) }
464 $events->grep(has_errors => @{$PARAMS{args}})
/openbsd-src/gnu/usr.bin/perl/cpan/Test-Simple/lib/Test2/API/InterceptResult/
H A DEvent.pm252 my $has_fatal_error = $self->has_errors && grep { $_->{fail} } $self->errors;
445 sub has_errors { $_[0]->{+FACET_DATA}->{errors} ? 1 : 0 }
1012 =item $event->has_errors
444 sub has_errors { $_[0]->{+FACET_DATA}->{errors} ? 1 : 0 } global() subroutine
/openbsd-src/gnu/usr.bin/perl/cpan/Test-Simple/t/Test2/modules/API/InterceptResult/
H A DEvent.t793 ok(!$one->has_errors, "No errors");
801 ok($two->has_errors, "Got errors");
809 ok($three->has_errors, "Got errors");
821 ok($four->has_errors, "Got errors");
/openbsd-src/gnu/usr.bin/perl/t/
H A Dharness506 exit($agg->has_errors ? 1 : 0);
/openbsd-src/gnu/usr.bin/perl/cpan/Test-Harness/lib/App/
H A DProve.pm549 return !$aggregator->has_errors;