/openbsd-src/gnu/llvm/lldb/source/Symbol/ |
H A D | SymbolFileOnDemand.cpp | 40 LLDB_LOG(GetLog(), "[{0}] {1} is skipped", GetSymbolFileName(), in InitializeObject() 50 LLDB_LOG(log, "[{0}] {1} is skipped", GetSymbolFileName(), __FUNCTION__); in ParseLanguage() 64 LLDB_LOG(log, "[{0}] {1} is skipped", GetSymbolFileName(), __FUNCTION__); in ParseXcodeSDK() 78 LLDB_LOG(GetLog(), "[{0}] {1} is skipped", GetSymbolFileName(), in ParseFunctions() 87 LLDB_LOG(GetLog(), "[{0}] {1} is skipped", GetSymbolFileName(), in ParseLineTable() 96 LLDB_LOG(GetLog(), "[{0}] {1} is skipped", GetSymbolFileName(), in ParseDebugMacros() 108 LLDB_LOG(GetLog(), "[{0}] {1} is skipped", GetSymbolFileName(), in ForEachExternalModule() 120 "[{0}] {1} is not skipped: explicitly allowed to support breakpoint", in ParseSupportFiles() 129 LLDB_LOG(log, "[{0}] {1} is skipped", GetSymbolFileName(), __FUNCTION__); in ParseIsOptimized() 143 LLDB_LOG(GetLog(), "[{0}] {1} is skipped", GetSymbolFileName(), in ParseTypes() [all …]
|
/openbsd-src/gnu/usr.bin/perl/cpan/Test-Harness/t/compat/ |
H A D | test-harness-compat.t | 54 'skipped' => 0, 179 'skipped' => 2, 204 'skipped' => 0, 229 'skipped' => 0, 254 'skipped' => 0, 279 'skipped' => 0, 295 'skipped' => 0, 320 'skipped' => 0, 346 'skipped' => 0, 362 'skipped' => 0, [all …]
|
/openbsd-src/gnu/usr.bin/perl/t/lib/warnings/ |
H A D | regexec | 18 print("SKIPPED\n# most systems run into stacksize limits\n"),exit; 44 print("SKIPPED\n# most systems run into stacksize limits\n"),exit; 70 print("SKIPPED\n# most systems run into stacksize limits\n"),exit; 96 print("SKIPPED\n# most systems run into stacksize limits\n"),exit; 124 print("SKIPPED\n# locales not available\n"),exit; 128 print("SKIPPED\n# no POSIX\n"),exit; 154 print("SKIPPED\n# locales not available\n"),exit; 158 print("SKIPPED\n# no POSIX\n"),exit; 162 print("SKIPPED\n# no UTF-8 locales\n"),exit; 177 print("SKIPPED\ [all...] |
H A D | mg | 25 print "SKIPPED\n# $^O, can't kill() to raise()\n"; exit; 35 print "SKIPPED\n# $^O, can't kill() to raise()\n"; exit; 45 print "SKIPPED\n# $^O, can't kill() to raise()\n"; exit; 58 print "SKIPPED\n# $^O, can't kill() to raise()\n"; exit;
|
/openbsd-src/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-src/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 150 pass is run if the pass may be skipped, it should call the OptBisect object to [all …]
|
/openbsd-src/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")])
|
/openbsd-src/gnu/llvm/llvm/utils/ |
H A D | abtest.py | 29 # someotherfile.s: skipped: same content 38 # funcname3 [2/XX]: skipped: same content 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: [all …]
|
/openbsd-src/gnu/llvm/llvm/utils/lit/lit/ |
H A D | reports.py | 22 unexecuted_codes = {lit.Test.EXCLUDED, lit.Test.SKIPPED} 91 lit.Test.SKIPPED, lit.Test.UNSUPPORTED} 105 skipped = sum(1 for t in tests if t.result.code in self.skipped_codes) 109 …e(f'<testsuite name={quo(name)} tests="{len(tests)}" failures="{failures}" skipped="{skipped}">\n') 140 file.write(f'>\n <skipped message={quo(reason)}/>\n</testcase>\n') 148 if code == lit.Test.SKIPPED: 185 or result_code == lit.Test.SKIPPED 199 unexecuted_codes = {lit.Test.EXCLUDED, lit.Test.SKIPPED} 246 lit.Test.SKIPPED, lit.Test.UNSUPPORTED}
|
/openbsd-src/gnu/llvm/lldb/third_party/Python/module/unittest2/unittest2/ |
H A D | runner.py | 54 ".=success F=fail E=error s=skipped x=expected-fail u=unexpected-success") 100 self.newTestResult(test, "s", "skipped %r" % (reason,)) 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-src/usr.sbin/unbound/testcode/ |
H A D | mini_tdir.sh | 59 echo ".. SKIPPED.. $timelen $name: $desc" 66 echo ".. SKIPPED.. $timelen $name: $desc" 90 echo ".. SKIPPED.. : $name" 97 echo ".. SKIPPED.. : $name" 168 echo "$name: SKIPPED" >> $result 169 echo "$name: SKIPPED" > ../$skip 170 echo "$name: SKIPPED"
|
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/cpp/ |
H A D | skipping2.c | 5 /* Tests that excess tokens in skipped conditional blocks don't warn. */ 11 #else foo /* { dg-bogus "extra tokens" "extra tokens in skipped block" } */ 12 #endif foo /* { dg-bogus "extra tokens" "extra tokens in skipped block" } */
|
/openbsd-src/regress/sys/arch/amd64/fpu/ |
H A D | Makefile | 6 @echo SKIPPED 33 @echo SKIPPED 50 @echo SKIPPED 61 @echo SKIPPED
|
/openbsd-src/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-src/lib/libcrypto/man/ |
H A D | X509_check_trust.3 |
|
/openbsd-src/gnu/llvm/llvm/utils/lit/tests/ |
H A D | xunit-output.py | 12 # CHECK-NEXT: <testsuite name="test-data" tests="5" failures="1" skipped="3"> 17 # CHECK-NEXT: <skipped message="Test not selected (--filter, --max-tests)"/> 20 # CHECK-NEXT: <skipped message="Missing required feature(s): dummy_feature"/> 24 # CHECK-NEXT: <skipped message="Unsupported configuration"/>
|
H A D | max-failures.py | 13 # CHECK-NOT: Skipped 17 # CHECK: Skipped: 2 21 # CHECK: Skipped: 1
|
/openbsd-src/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-src/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 => [], 704 skipped => [2], 741 skipped => [1], [all …]
|
/openbsd-src/gnu/llvm/clang/lib/AST/ |
H A D | Randstruct.cpp | 81 size_t Skipped = 0; in randomizeStructureLayoutImpl() local 84 // If we've Skipped more fields than we have remaining to place, that means in randomizeStructureLayoutImpl() 87 if (Skipped >= FieldsOut.size()) { in randomizeStructureLayoutImpl() 88 Skipped = 0; in randomizeStructureLayoutImpl() 133 Skipped = 0; in randomizeStructureLayoutImpl() 139 ++Skipped; // Mark it skipped. in randomizeStructureLayoutImpl()
|
/openbsd-src/gnu/llvm/lldb/packages/Python/lldbsuite/test/ |
H A D | decorators.py | 222 # For the test to be skipped, all specified (e.g. not None) parameters must be True. 522 …"""Decorate the item to mark tests that should be skipped when LLDB is built with no SB API header… 555 return "skipped under Rosetta" 560 """Decorate the item to skip tests that should be skipped on the iOS Simulator.""" 578 """Decorate the item to skip tests that should be skipped on Darwin armv7/arm64 targets.""" 584 """Decorate the item to skip tests that should be skipped on Darwin simulator targets.""" 590 """Decorate the item to skip tests that should be skipped on FreeBSD.""" 595 """Decorate the item to skip tests that should be skipped on NetBSD.""" 600 """Decorate the item to skip tests that should be skipped on Darwin.""" 607 """Decorate the item to skip tests that should be skipped on Linux.""" [all …]
|
/openbsd-src/gnu/llvm/compiler-rt/include/sanitizer/ |
H A D | netbsd_syscall_hooks.h | 94 /* syscall 11 has been skipped */ 375 /* syscall 67 has been skipped */ 376 /* syscall 68 has been skipped */ 377 /* syscall 69 has been skipped */ 378 /* syscall 70 has been skipped */ 409 /* syscall 76 has been skipped */ 410 /* syscall 77 has been skipped */ 497 /* syscall 94 has been skipped */ 569 /* syscall 107 has been skipped */ 606 /* syscall 115 has been skipped */ [all …]
|
/openbsd-src/regress/usr.sbin/bgpd/integrationtests/ |
H A D | Makefile | 66 @echo SKIPPED 70 @echo SKIPPED 74 @echo SKIPPED 78 @echo SKIPPED
|
/openbsd-src/gnu/llvm/clang/lib/CodeGen/ |
H A D | CoverageMappingGen.h | 41 // The location of token before the skipped source range. 43 // The location of token after the skipped source range. 45 // The nature of this skipped range 59 /// Stores additional source code information like skipped ranges which 65 // A vector of skipped source ranges and PrevTokLoc with NextTokLoc.
|
/openbsd-src/share/man/man5/ |
H A D | bsd.regress.mk.5 | 116 Targets which are unconditionally skipped. 119 All of these tests can be skipped by setting the 148 .Qq SKIPPED 153 .Qq SKIPPED . 162 .Qq SKIPPED
|