/openbsd-src/regress/usr.bin/mandoc/mdoc/Bl/ |
H A D | breakingIt.in | 13 More stray text 20 More stray text 28 More tagged text 30 Yet more tagged text. 36 More item text 44 More stray text. 51 More stray text. 61 More tagged text.
|
H A D | breakingIt.out_markdown | 12 <More stray text> 19 <More stray text> 26 > <More tagged text> 30 > Yet more tagged text. 33 <More item text> 41 > More stray text. 49 > More stray text. 61 > More tagged text.
|
H A D | breakingIt.out_ascii | 8 Stray text. <More stray text> 11 Stray text. <More stray text> 15 tag Tagged text. <More tagged text> 17 tag2 Yet more tagged text. 19 ++oo Item text. <More item text> 26 More stray text. 31 More stray text. 39 tag2 More tagged text.
|
/openbsd-src/gnu/usr.bin/perl/cpan/CPAN-Meta/t/lib/Parse/CPAN/Meta/ |
H A D | Test.pm | 4 use Test::More (); 44 Test::More::is( $@, '', "$name: Parse::CPAN::Meta parses without error" ); 45 Test::More::is( $yaml_copy, $string, "$name: Parse::CPAN::Meta does not modify the input string" ); 47 Test::More::skip( "Shortcutting after failure", 1 ) if $@; 48 Test::More::is_deeply( \@yaml, $array, "$name: Parse::CPAN::Meta parses correctly" ); 58 Test::More::like( $@, qr/$_[0]/, "CPAN::Meta::YAML throws expected error" ); 77 Test::More::ok( -f $file, "Found $name" ) or Test::More::diag("Searched at '$file'"); 78 Test::More::ok( -r $file, "Can read $name" ); 80 Test::More::ok( (defined $content and ! ref $content), "Loaded $name" ); 81 Test::More::ok( ($size < length $content), "Content of $name larger than $size bytes" );
|
/openbsd-src/gnu/usr.bin/perl/cpan/Test-Simple/lib/Test/ |
H A D | More.pm | 1 package Test::More; 41 Test::More - yet another framework for writing test scripts 45 use Test::More tests => 23; 47 use Test::More skip_all => $reason; 49 use Test::More; # see done_testing() 92 my @status = Test::More::status; 116 The preferred way to do this is to declare a plan when you C<use Test::More>. 118 use Test::More tests => 23; 124 use Test::More; 138 use Test::More skip_al [all...] |
H A D | Simple.pm | 31 suitable for CPAN modules and other pursuits. If you wish to do more 32 complicated testing, use the Test::More module (a drop-in replacement 91 you run less (or more) tests than you planned, the missing (or extras) 103 If you fail more than 254 tests, it will be reported as 254. 107 recommended you look at L<Test::More>. 184 =item L<Test::More> 186 More testing functions! Once you outgrow Test::Simple, look at 187 L<Test::More>. Test::Simple is 100% forward compatible with L<Test::More> 188 (i.e. you can just use L<Test::More> instea [all...] |
H A D | Tutorial.pod | 48 results to determine if you succeeded or failed (more on that later). 184 Instead, switch from L<Test::Simple> to L<Test::More>. L<Test::More> 185 does everything L<Test::Simple> does, and more! In fact, L<Test::More> does 187 L<Test::Simple> out and put L<Test::More> in its place. That's just what 190 L<Test::More> does more than L<Test::Simple>. The most important difference at 191 this point is it provides more informative ways to say "ok". Although you can 196 use Test::More tests => 8; 214 you get more information: 265 use Test::More tests => 32; 297 C<%ICal_Dates>. Now that it's less work to test with more dates, you'll [all …]
|
/openbsd-src/distrib/special/more/ |
H A D | more.1 | 1 .\" $OpenBSD: more.1,v 1.12 2020/01/16 16:46:46 schwarze Exp $ 30 .\" @(#)more.1 5.15 (Berkeley) 7/29/91 36 .Nm more , page 39 .Nm more 52 .Nm more 55 It normally pauses after each screenful, printing --More-- 57 If the user then types a carriage return, one more line is displayed. 152 along with the --More-- prompt. 169 more lines, (or another screenful if no argument is given). 171 Display 11 more lines (a [all …]
|
/openbsd-src/gnu/usr.bin/perl/dist/Tie-File/t/ |
H A D | 19_cache.t | 56 splice(@a, 0, 0, 'r7', 'rec8'); # insert more than one 58 splice(@a, 0, 2, 'rec7', 'record8', 'rec9'); # insert more than delete 60 splice(@a, 0, 3, 'record9', 'rec10'); # delete more than insert 62 splice(@a, 0, 2); # delete more than one 80 splice(@a, 1, 0, 'r7', 'rec8'); # insert more than one 82 splice(@a, 1, 2, 'rec7', 'record8', 'rec9'); # insert more than delete 84 splice(@a, 1, 3, 'record9', 'rec10'); # delete more than insert 86 splice(@a, 1, 2); # delete more than one 103 splice(@a, 3, 0, 'r7', 'rec8'); # insert more than one 105 splice(@a, 3, 2, 'rec7', 'record8', 'rec9'); # insert more than delete [all …]
|
H A D | 23_rv_ac_splice.t | 43 @r = splice(@a, 0, 0, 'r7', 'rec8'); # insert more than one 45 @r = splice(@a, 0, 2, 'rec7', 'record8', 'rec9'); # insert more than delete 48 @r = splice(@a, 0, 3, 'record9', 'rec10'); # delete more than insert 50 @r = splice(@a, 0, 2); # delete more than one 68 @r = splice(@a, 1, 0, 'r7', 'rec8'); # insert more than one 70 @r = splice(@a, 1, 2, 'rec7', 'record8', 'rec9'); # insert more than delete 73 @r = splice(@a, 1, 3, 'record9', 'rec10'); # delete more than insert 75 @r = splice(@a, 1, 2); # delete more than one 92 @r = splice(@a, 3, 0, 'r7', 'rec8'); # insert more than one 94 @r = splice(@a, 3, 2, 'rec7', 'record8', 'rec9'); # insert more than delete [all …]
|
H A D | 11_rv_splice_rs.t | 42 @r = splice(@a, 0, 0, 'r7', 'rec8'); # insert more than one 44 @r = splice(@a, 0, 2, 'rec7', 'record8', 'rec9'); # insert more than delete 47 @r = splice(@a, 0, 3, 'record9', 'rec10'); # delete more than insert 49 @r = splice(@a, 0, 2); # delete more than one 67 @r = splice(@a, 1, 0, 'r7', 'rec8'); # insert more than one 69 @r = splice(@a, 1, 2, 'rec7', 'record8', 'rec9'); # insert more than delete 72 @r = splice(@a, 1, 3, 'record9', 'rec10'); # delete more than insert 74 @r = splice(@a, 1, 2); # delete more than one 91 @r = splice(@a, 3, 0, 'r7', 'rec8'); # insert more than one 93 @r = splice(@a, 3, 2, 'rec7', 'record8', 'rec9'); # insert more than delete [all …]
|
H A D | 10_splice_rs.t | 50 splice(@a, 0, 0, 'r7', 'rec8'); # insert more than one 52 splice(@a, 0, 2, 'rec7', 'record8', 'rec9'); # insert more than delete 55 splice(@a, 0, 3, 'record9', 'rec10'); # delete more than insert 57 splice(@a, 0, 2); # delete more than one 75 splice(@a, 1, 0, 'r7', 'rec8'); # insert more than one 77 splice(@a, 1, 2, 'rec7', 'record8', 'rec9'); # insert more than delete 80 splice(@a, 1, 3, 'record9', 'rec10'); # delete more than insert 82 splice(@a, 1, 2); # delete more than one 99 splice(@a, 3, 0, 'r7', 'rec8'); # insert more than one 101 splice(@a, 3, 2, 'rec7', 'record8', 'rec9'); # insert more than delete [all …]
|
H A D | 07_rv_splice.t | 43 @r = splice(@a, 0, 0, 'r7', 'rec8'); # insert more than one 45 @r = splice(@a, 0, 2, 'rec7', 'record8', 'rec9'); # insert more than delete 48 @r = splice(@a, 0, 3, 'record9', 'rec10'); # delete more than insert 50 @r = splice(@a, 0, 2); # delete more than one 68 @r = splice(@a, 1, 0, 'r7', 'rec8'); # insert more than one 70 @r = splice(@a, 1, 2, 'rec7', 'record8', 'rec9'); # insert more than delete 73 @r = splice(@a, 1, 3, 'record9', 'rec10'); # delete more than insert 75 @r = splice(@a, 1, 2); # delete more than one 92 @r = splice(@a, 3, 0, 'r7', 'rec8'); # insert more than one 94 @r = splice(@a, 3, 2, 'rec7', 'record8', 'rec9'); # insert more than delete [all …]
|
H A D | 20_cache_full.t | 63 splice(@a, 0, 0, 'r7', 'rec8'); # insert more than one 65 splice(@a, 0, 2, 'rec7', 'record8', 'rec9'); # insert more than delete 67 splice(@a, 0, 3, 'record9', 'rec10'); # delete more than insert 69 splice(@a, 0, 2); # delete more than one 87 splice(@a, 1, 0, 'r7', 'rec8'); # insert more than one 89 splice(@a, 1, 2, 'rec7', 'record8', 'rec9'); # insert more than delete 91 splice(@a, 1, 3, 'record9', 'rec10'); # delete more than insert 93 splice(@a, 1, 2); # delete more than one 110 splice(@a, 3, 0, 'r7', 'rec8'); # insert more than one 112 splice(@a, 3, 2, 'rec7', 'record8', 'rec9'); # insert more than delete [all …]
|
/openbsd-src/gnu/usr.bin/perl/cpan/JSON-PP/t/ |
H A D | 120_incr_parse_truncated.t | 3 use Test::More; 17 my $e = $@; # test more clobbers $@, we need it twice 27 my $e = $@; # test more clobbers $@, we need it twice 37 my $e = $@; # test more clobbers $@, we need it twice 47 my $e = $@; # test more clobbers $@, we need it twice 57 my $e = $@; # test more clobbers $@, we need it twice 67 my $e = $@; # test more clobbers $@, we need it twice 77 my $e = $@; # test more clobbers $@, we need it twice 87 my $e = $@; # test more clobbers $@, we need it twice 97 my $e = $@; # test more clobbers $@, we need it twice [all …]
|
/openbsd-src/gnu/usr.bin/perl/cpan/podlators/t/data/snippets/text/ |
H A D | code | 9 This is more random text. 12 This is more random text. 20 This is more random text. 24 This is more random text. 27 This is more random text. 33 This is more random text.
|
/openbsd-src/gnu/usr.bin/perl/cpan/podlators/t/lib/Test/ |
H A D | RRA.pm | 21 # Abort if Test::More was loaded before Test::RRA to be sure that we get the 22 # benefits of the Test::More probing below. 23 if ($INC{'Test/More.pm'}) { 24 croak('Test::More loaded before Test::RRA'); 27 # Red Hat's base perl package doesn't include Test::More (one has to install 29 # tests if Test::More is not present. This relies on Test::RRA being included 30 # before Test::More. 32 require Test::More; 33 Test::More->import(); 36 print "1..0 # SKIP Test::More required for test\n" [all …]
|
/openbsd-src/gnu/usr.bin/perl/cpan/Term-ANSIColor/t/lib/Test/ |
H A D | RRA.pm | 21 # Abort if Test::More was loaded before Test::RRA to be sure that we get the 22 # benefits of the Test::More probing below. 23 if ($INC{'Test/More.pm'}) { 24 croak('Test::More loaded before Test::RRA'); 27 # Red Hat's base perl package doesn't include Test::More (one has to install 29 # tests if Test::More is not present. This relies on Test::RRA being included 30 # before Test::More. 32 require Test::More; 33 Test::More->import(); 36 print "1..0 # SKIP Test::More required for test\n" [all …]
|
/openbsd-src/gnu/usr.bin/perl/cpan/Test-Simple/t/Legacy/ |
H A D | More.t | 11 use Test::More tests => 57; 21 require_ok('Test::More'); 34 . "Test::More::isn't() to use Test::More::isnt() as a replacement" 35 . " at t/Legacy/More.t line 31\n", 58 can_ok('Test::More', qw(require_ok use_ok ok is isnt like skip can_ok 60 can_ok(bless({}, "Test::More"), qw(require_ok use_ok ok is isnt like skip 94 is @Test::More::Data_Stack, 0, '@Data_Stack not holding onto things'; 98 is @Test::More::Data_Stack, 0; 102 is @Test::More::Data_Stack, 0; 132 is @Test::More::Data_Stack, 0; [all …]
|
H A D | require_ok.t | 14 use Test::More tests => 8; 24 # Its more trouble than its worth to try to create these filepaths to test 26 ok !Test::More::_is_module_name('foo:bar'); 27 ok !Test::More::_is_module_name('foo/bar.thing'); 28 ok !Test::More::_is_module_name('Foo::Bar::'); 29 ok Test::More::_is_module_name('V');
|
/openbsd-src/gnu/usr.bin/perl/dist/Thread-Queue/examples/ |
H A D | queue.pl | 23 # Ask for more work when the queue is empty 25 print("\nThread waiting for more work\n\n"); 26 $status_q->enqueue('more'); 36 # More work for the thread 44 while ($status_q->dequeue() eq 'more') { 45 last if (! @work); # No more work 49 # Signal that there is no more work
|
/openbsd-src/usr.bin/less/ |
H A D | more.1 | 1 .\" $OpenBSD: more.1,v 1.18 2019/08/20 11:34:18 jmc Exp $ 30 .\" @(#)more.1 8.2 (Berkeley) 4/18/94 36 .Nm more 39 .Nm more 110 For more information, see 138 If N is more than the screen size, only the final screenful is displayed. 143 If N is more than the screen size, only the final screenful is displayed. 146 The entire N lines are displayed, even if N is more than the screen size. 149 The entire N lines are displayed, even if N is more than the screen size. 184 for more information on regular expressions. [all …]
|
/openbsd-src/gnu/usr.bin/perl/cpan/Test-Simple/t/Legacy_And_Test2/ |
H A D | thread_init_warning.t | 7 require Test::More; 8 Test::More->import(skip_all => "threads are not supported"); 17 require Test::More; 20 Test::More::is_deeply(\@warns, [], "No init warning"); 22 Test::More::done_testing();
|
/openbsd-src/gnu/usr.bin/perl/cpan/Pod-Simple/t/ |
H A D | cbacks.t | 3 use Test::More tests => 6; 28 my $more = ''; 35 $_[0]->code_handler(sub { $more .= $_[1] . ":" . $_[0] . "\n" } ); 36 $_[0]->cut_handler( sub { $more .= "~" . $_[1] . ":" . $_[0]. "\n" } ); 37 $_[0]->pod_handler( sub { $more .= "+" . $_[1] . ":" . $_[0]. "\n" } ); 39 sub { $more .= "=" . $_[1] . ":" . $_[0]. "\n" } ); 45 "=cut more text", 64 is scalar($got = $more), scalar($exp = join "\n" => 69 "~5:=cut more text",
|
/openbsd-src/gnu/llvm/llvm/tools/llvm-reduce/deltas/ |
H A D | ReduceOperandsSkip.cpp | 21 /// including Root itself. This is a BF search such that the more steps needed 22 /// to get to the reference, the more behind it is found in @p Collection. Each 23 /// step could be its own reduction, therefore we consider later values "more 49 // TODO: be more precise about which GEP operands we can reduce (e.g. array in shouldReduceOperand() 60 /// Return a reduction priority for @p V. A higher values means "more reduced". 99 // Return whether @p LHS is "more reduced" that @p RHS. That is, whether in opportunities() 103 // A value is not more reduced than itself. in opportunities() 112 // LHS is more reduced if it is defined further up the dominance tree. In a in opportunities() 121 // "more reduced" choice that skips over more instructions. in opportunities() 166 // Only consider candidates that are "more reduced" than the original in opportunities() [all …]
|