/openbsd/gnu/usr.bin/perl/dist/Test/t/ |
H A D | skip.t | 12 my $skipped=1; 13 skip('hop', sub { $skipped = 0 }); 14 skip(sub {'jump'}, sub { $skipped = 0 }); 15 skip('skipping stones is more fun', sub { $skipped = 0 }); 24 ok $skipped, 1, 'not skipped?';
|
/openbsd/gnu/llvm/lldb/third_party/Python/module/unittest2/unittest2/test/ |
H A D | test_skipping.py | 18 self.assertEqual(result.skipped, [(test, "skip")]) 32 self.assertEqual(result.skipped, [(test, "testing")]) 55 self.assertEqual(len(result.skipped), 1) 60 self.assertEqual(result.skipped, [(test_do_skip, "testing")]) 76 self.assertEqual(result.skipped, [(test, "testing")]) 129 self.assertEqual(result.skipped, [(test, "testing")]) 150 self.assertEqual(result.skipped, [(test, "testing")])
|
H A D | test_setups.py | 484 self.assertEqual(len(result.skipped), 1) 485 skipped = result.skipped[0][0] 486 self.assertEqual(str(skipped), 'setUpClass (%s.Test)' % __name__) 509 self.assertEqual(len(result.skipped), 1) 510 skipped = result.skipped[0][0] 511 self.assertEqual(str(skipped), 'setUpModule (Module)')
|
/openbsd/gnu/usr.bin/perl/cpan/Test-Harness/lib/TAP/Formatter/ |
H A D | Session.pm | 170 if ( my $skipped = $parser->skipped ) { 171 $passed -= $skipped; 172 my $test = 'subtest' . ( $skipped != 1 ? 's' : '' ); 174 "\n\t(less $skipped skipped $test: $passed okay)");
|
/openbsd/gnu/llvm/clang/utils/TestUtils/ |
H A D | pch-test.pl | 16 my $skipped = 0; 48 $skipped++; 54 print("$skipped tests skipped ('x')\n")
|
/openbsd/gnu/usr.bin/perl/cpan/Test-Harness/t/ |
H A D | regression.t | 125 skipped => [], 206 skipped => [], 225 skipped => [], 301 skipped => [], 377 skipped => [], 456 skipped => [], 551 skipped => [], 627 skipped => [], 800 skipped => [], 882 skipped => [], [all …]
|
/openbsd/gnu/llvm/llvm/utils/ |
H A D | abtest.py | 275 skipped = [] 285 skipped.append(basename) 291 if len(skipped) > 0: 292 info("Skipped (same content): %s" % format_namelist(skipped)) 302 assert basename in skipped 334 skipped = [] 341 skipped.append(name) 346 if len(skipped) > 0: 347 info("Skipped (same content): %s" % format_namelist(skipped))
|
/openbsd/gnu/llvm/llvm/docs/ |
H A D | OptBisect.rst | 18 skipped while still allowing correct code generation call a function to 21 therefore never skipped. Generally, this means analysis passes, passes 47 will be printed to stderr for each optimization that could be skipped 50 opt-bisect-limit. All optimizations with a higher index value will be skipped. 90 if an invocation of the pass is not skipped individual transformations within 91 that invocation may still be skipped. 96 numbering, but because all optimizations above the limit are skipped this 100 function for a pass, the pass will query whether or not it should be skipped 104 as the pass is run. The pass may be run on two functions but skipped for the 151 see if it should be skipped. [all …]
|
/openbsd/usr.sbin/adduser/ |
H A D | rmuser.perl | 278 local($skipped, $i); 282 $skipped = 0; 289 $skipped = 1; 295 if ($skipped == 0) {
|
/openbsd/gnu/usr.bin/perl/os2/OS2/OS2-REXX/t/ |
H A D | rx_vrexx.t | 6 print "1..0 # skipped: OS2::REXX not built\n"; 10 print "1..0 # skipped: request via PERL_TEST_NOVREXX\n"; 25 $found or print "1..0 # skipped: cannot find $name.DLL\n" and exit;
|
/openbsd/gnu/llvm/lldb/third_party/Python/module/unittest2/unittest2/ |
H A D | runner.py | 181 expectedFails = unexpectedSuccesses = skipped = passed = failed = errored = 0 185 result.skipped, 189 expectedFails, unexpectedSuccesses, skipped, passed, failed, errored = results 196 infos.append("%d skipped" % skipped)
|
/openbsd/gnu/usr.bin/perl/dist/encoding-warnings/t/ |
H A D | 4-lexical.t | 27 ok('skipped'); 28 ok('skipped');
|
/openbsd/gnu/usr.bin/perl/cpan/Pod-Simple/t/ |
H A D | encod04.t | 70 if (ord("A") != 65) { # ASCII-platform dependent test skipped on this platform 102 if (ord("A") != 65) { # ASCII-platform dependent test skipped on this platform 133 if (ord("A") != 65) { # ASCII-platform dependent test skipped on this platform 163 if (ord("A") != 65) { # ASCII-platform dependent test skipped on this platform
|
/openbsd/gnu/usr.bin/texinfo/makeinfo/tests/ |
H A D | Makefile.in | 313 skipped=""; \ 315 skipped="($$skip tests were not run)"; \ 316 test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \ 317 dashes="$$skipped"; \ 328 test -z "$$skipped" || echo "$$skipped"; \
|
/openbsd/gnu/usr.bin/perl/dist/Unicode-Normalize/t/ |
H A D | illegal.t | 11 print "1..0 # skipped: Perl 5.6.1 or later". 23 print "1..0 # skipped: XSUB, or Perl 5.8.0 or later".
|
/openbsd/gnu/llvm/llvm/utils/lit/lit/ |
H A D | run.py | 57 skipped = lit.Test.Result(lit.Test.SKIPPED) 60 test.setResult(skipped)
|
/openbsd/gnu/usr.bin/perl/dist/base/t/ |
H A D | fields-5_6_0.t | 175 ok( 1, 'test skipped for perl < 5.6.0' ); 176 ok( 1, 'test skipped for perl < 5.6.0' ); 212 ok( 1, 'test skipped for perl < 5.6.0' ); 213 ok( 1, 'test skipped for perl < 5.6.0' );
|
/openbsd/bin/pax/ |
H A D | buf_subs.c | 393 off_t skipped = 0; in rd_skip() local 424 if (ar_fow(cnt, &skipped) < 0) in rd_skip() 426 res += cnt - skipped; in rd_skip() 427 rdcnt += skipped; in rd_skip()
|
/openbsd/usr.sbin/relayd/ |
H A D | hce.c | 157 if (table->skipped++ > table->conf.skip_cnt) in hce_launch_checks() 158 table->skipped = 0; in hce_launch_checks() 159 if (table->skipped != 1) in hce_launch_checks() 329 table->skipped = 0; in hce_dispatch_pfe()
|
/openbsd/sys/arch/amd64/stand/libsa/ |
H A D | exec_i386.c | 284 static int skipped = 0; in boot_alloc() local 292 if (((uint64_t)cur + PAGE_SIZE >= 0xF000) && !skipped) { in boot_alloc() 294 skipped = 1; in boot_alloc()
|
/openbsd/libexec/ld.so/m88k/ |
H A D | ldasm.S | 83 bsr 1f | the following instruction is skipped 99 bsr 1f | the following instruction is skipped
|
/openbsd/gnu/usr.bin/perl/cpan/Test-Harness/lib/Test/ |
H A D | Harness.pm | 338 skipped => 0, 351 $tot{skipped}++; 392 $tot{sub_skipped} += $parser->skipped;
|
/openbsd/gnu/usr.bin/perl/cpan/Test-Harness/lib/TAP/ |
H A D | Parser.pm | 377 skipped => [], # 912 sub skipped { @{ shift->{skipped} } } subroutine 1239 push @{ $self->{skipped} } => $number
|
/openbsd/gnu/llvm/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_syscalls_netbsd.inc | 197 /* syscall 11 has been skipped */ 764 /* syscall 67 has been skipped */ 765 /* syscall 68 has been skipped */ 766 /* syscall 69 has been skipped */ 767 /* syscall 70 has been skipped */ 798 /* syscall 76 has been skipped */ 799 /* syscall 77 has been skipped */ 896 /* syscall 94 has been skipped */ 985 /* syscall 107 has been skipped */ 1021 /* syscall 115 has been skipped */ [all …]
|
/openbsd/regress/usr.sbin/btrace/ |
H A D | comments.bt | 8 // comment that should be skipped (off-by one test)
|