Home
last modified time | relevance | path

Searched full:broken (Results 1 – 25 of 1730) sorted by relevance

12345678910>>...70

/freebsd/crypto/openssl/external/perl/Text-Template-1.56/t/
H A Dbroken.t18 # (2) BROKEN sub called in ->new?
23 BROKEN => sub { '---' },)->fill_in();
27 # (3) BROKEN sub called in ->fill_in?
31 SOURCE => '{1/0}',)->fill_in(BROKEN => sub { '---' });
35 # (4) BROKEN sub passed correct args when called in ->new?
40 BROKEN => sub {
47 # (5) BROKEN sub passed correct args when called in ->fill_in?
53 BROKEN => sub {
60 # BROKEN sub handles undef
63 ->fill_in(BROKEN => sub { undef });
/freebsd/sys/contrib/device-tree/Bindings/net/
H A Dethernet-phy.yaml89 broken-turn-around:
125 eee-broken-100tx:
129 broken and request the ethernet to stop advertising it.
131 eee-broken-1000t:
135 broken and request the ethernet to stop advertising it.
137 eee-broken-10gt:
141 broken and request the ethernet to stop advertising it.
143 eee-broken-1000kx:
147 broken and request the ethernet to stop advertising it.
149 eee-broken-10gkx4:
[all …]
H A Dmaxlinear,gpy2xx.yaml17 maxlinear,use-broken-interrupts:
19 Interrupts are broken on some GPY2xx PHYs in that they keep the
31 maxlinear,use-broken-interrupts: [ interrupts ]
44 maxlinear,use-broken-interrupts;
/freebsd/contrib/kyua/engine/
H A Datf_result.cpp126 /// \pre status must be one of "broken", "expected_death", "expected_failure",
139 if (status == "broken") in parse_with_reason()
140 return atf_result(atf_result::broken, reason); in parse_with_reason()
177 /// \return The parsed test result if the data is valid, or a broken result if
278 /// If the parsing fails for any reason, the test result is 'broken' and it
281 /// have a bug), and thus why they are reported as broken instead of just failed
304 if (status == "broken") in parse()
393 case atf_result::broken: in good()
408 /// thus reported as broken.
416 /// \result The adjusted result. The original result is transformed into broken
[all …]
H A Datf_result_test.cpp100 /// \param reason_regexp The reason to match against the broken reason.
115 /// \param reason_regexp The reason to match against the broken reason.
161 engine::atf_result::broken, none, "a b c",
162 "broken: a b c\n");
164 engine::atf_result::broken, none, " ",
165 "broken: \n");
185 "expected_exit(45a3): this is broken\n");
205 "expected_signal(45a3): this is broken\n");
282 const engine::atf_result in_result(engine::atf_result::broken, in ATF_TEST_CASE_BODY()
292 const engine::atf_result timed_out(engine::atf_result::broken, in ATF_TEST_CASE_BODY()
[all …]
/freebsd/tools/test/stress2/misc/
H A Dopen.sh48 [ -f broken -o -f broken2 ] && { ls -l; echo FAIL; status=1; }
67 if (unlink("broken") <= 0 && errno != ENOENT)
68 err(1, "unlink(broken)");
71 if (symlink("target", "broken") < 0)
72 err(1, "symlink(target, broken)");
75 fd = open("broken", O_CREAT | O_DIRECTORY, 0600);
77 errx(1, "open(broken, O_CREAT | O_DIRECTORY) - no error");
/freebsd/contrib/kyua/integration/
H A Dcmd_report_test.sh69 Test cases: 2 total, 1 skipped, 0 expected failures, 0 broken, 0 failed
81 Test cases: 2 total, 1 skipped, 0 expected failures, 0 broken, 0 failed
126 Test cases: 2 total, 1 skipped, 0 expected failures, 0 broken, 0 failed
155 Test cases: 1 total, 1 skipped, 0 expected failures, 0 broken, 0 failed
174 Test cases: 1 total, 0 skipped, 0 expected failures, 0 broken, 0 failed
184 Test cases: 1 total, 0 skipped, 0 expected failures, 0 broken, 0 failed
203 Test cases: 1 total, 1 skipped, 0 expected failures, 0 broken, 0 failed
275 Test cases: 2 total, 1 skipped, 0 expected failures, 0 broken, 0 failed
298 Test cases: 2 total, 1 skipped, 0 expected failures, 0 broken, 0 failed
316 Test cases: 2 total, 1 skipped, 0 expected failures, 0 broken, 0 failed
[all …]
H A Dcmd_test_test.sh47 1/2 passed (0 broken, 0 failed, 1 skipped)
72 1/2 passed (0 broken, 1 failed, 0 skipped)
105 3/7 passed (0 broken, 0 failed, 4 skipped)
141 3/7 passed (0 broken, 3 failed, 1 skipped)
175 5/5 passed (0 broken, 0 failed, 0 skipped)
206 1/6 passed (0 broken, 5 failed, 0 skipped)
227 bogus_test_cases:die -> broken: Premature exit; test case received signal 9 [S.UUUs]
228 bogus_test_cases:exit -> broken: Premature exit; test case exited with code 0 [S.UUUs]
234 1/3 passed (2 broken, 0 failed, 0 skipped)
273 2/4 passed (0 broken, 1 failed, 1 skipped)
[all …]
/freebsd/sys/contrib/device-tree/Bindings/ata/
H A Dpata-arasan.txt21 - arasan,broken-udma: if present, UDMA mode is unusable
22 - arasan,broken-mwdma: if present, MWDMA mode is unusable
23 - arasan,broken-pio: if present, PIO mode is unusable
25 required unless both UDMA and MWDMA mode are broken
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIAnnotateControlFlow.cpp84 handleLoopCondition(Value *Cond, PHINode *Broken, llvm::Loop *L,
235 Value *Cond, PHINode *Broken, llvm::Loop *L, BranchInst *Term) { in handleLoopCondition() argument
237 auto CreateBreak = [this, Cond, Broken](Instruction *I) -> CallInst * { in handleLoopCondition()
238 return IRBuilder<>(I).CreateCall(IfBreak, {Cond, Broken}); in handleLoopCondition()
280 PHINode *Broken = PHINode::Create(IntMask, 0, "phi.broken"); in handleLoop() local
281 Broken->insertBefore(Target->begin()); in handleLoop()
285 Value *Arg = handleLoopCondition(Cond, Broken, L, Term); in handleLoop()
292 // of the loop at BB, it should not reset or change "Broken", which keeps in handleLoop()
295 PHIValue = Broken; in handleLoop()
296 Broken->addIncoming(PHIValue, Pred); in handleLoop()
/freebsd/crypto/openssh/regress/
H A Dbroken-pipe.sh1 # $OpenBSD: broken-pipe.sh,v 1.6 2017/04/30 23:34:55 djm Exp $
4 tid="broken pipe test"
10 fail "broken pipe returns $r"
/freebsd/sys/contrib/device-tree/Bindings/mmc/
H A Dmmc-card.txt13 -broken-hpi : Use this to indicate that the mmc-card has a broken hpi
28 broken-hpi;
H A Dmmc-card.yaml23 broken-hpi:
26 Use this to indicate that the mmc-card has a broken hpi
44 broken-hpi;
/freebsd/sys/dev/mii/
H A Dmii_fdt.c221 if (OF_hasprop(cfg->phynode, "broken-turn-around")) in mii_fdt_get_config()
227 if (OF_hasprop(cfg->phynode, "eee-broken-100tx")) in mii_fdt_get_config()
229 if (OF_hasprop(cfg->phynode, "eee-broken-1000t")) in mii_fdt_get_config()
231 if (OF_hasprop(cfg->phynode, "eee-broken-10gt")) in mii_fdt_get_config()
233 if (OF_hasprop(cfg->phynode, "eee-broken-1000kx")) in mii_fdt_get_config()
235 if (OF_hasprop(cfg->phynode, "eee-broken-10gkx4")) in mii_fdt_get_config()
237 if (OF_hasprop(cfg->phynode, "eee-broken-10gkr")) in mii_fdt_get_config()
/freebsd/contrib/kyua/misc/
H A Dindex.html63 <td><a href="#broken">Broken</a></td>
68 <td>Broken</td>
122 <h2><a name="broken">Broken test cases</a></h2>
/freebsd/sys/dev/isci/scil/
H A Dscif_sas_design.h154 The SCIF_SAS_LIBRARY object is broken down into 2 individual source files
169 The SCIF_SAS_CONTROLLER object is broken down into 3 individual source files
186 The SCIF_SAS_DOMAIN object is broken down into 3 individual
204 The SCIF_SAS_REMOTE_DEVICE object is broken down into 7 individual source files
207 particular protocol type (e.g. SMP, STP, etc.) are broken out into their own
262 The SCIF_SAS_REQUEST object is broken down into 1 individual source file
277 The SCIF_SAS_IO_REQUEST object is broken down into 3 individual
299 The SCIF_SAS_TASK_REQUEST object is broken down into 3 individual
/freebsd/sys/contrib/openzfs/rpm/redhat/
H A Dzfs-dkms.spec.in95 # This is a workaround for a broken 'dkms status', we caused in a previous version.
99 echo "ERROR: dkms status is broken!" >&2
126 # But this also may help, if we have a broken 'dkms status'.
156 # If removing the modules failed, it might be because of the broken 'dkms status'.
159 echo "ERROR: dkms status is broken!" >&2
/freebsd/sys/contrib/openzfs/rpm/generic/
H A Dzfs-dkms.spec.in95 # This is a workaround for a broken 'dkms status', we caused in a previous version.
99 echo "ERROR: dkms status is broken!" >&2
126 # But this also may help, if we have a broken 'dkms status'.
156 # If removing the modules failed, it might be because of the broken 'dkms status'.
159 echo "ERROR: dkms status is broken!" >&2
/freebsd/crypto/openssl/external/perl/Text-Template-1.56/lib/Text/
H A DTemplate.pm67 my $broken = _param('broken', %a);
84 BROKEN => $broken,
89 # Under 5.005_03, if any of $stype, $prepend, $untaint, or $broken
305 my $fi_broken = _param('broken', %fi_a) || $fi_self->{BROKEN} || \&_default_broken;
650 $text = $template->fill_in(BROKEN => \&callback, BROKEN_ARG => $ref, ...);
994 =item C<BROKEN>
997 overridden in the arguments to C<fill_in>. See L<C<BROKEN>> below.
1038 At present, there are eight legal options: C<PACKAGE>, C<BROKEN>,
1218 =item C<BROKEN>
1221 reason, and you have set the C<BROKEN> option to a function reference,
[all …]
/freebsd/crypto/openssl/external/perl/Text-Template-1.56/
H A DChanges10 - Improve workaround for broken Win32 File::Temp taint failure (Thanks Roy Ivy).
59 - Fix BROKEN behaviour so that it returns the text accumulated so far on
158 - Error messages passed to BROKEN subroutines will now report the correct
176 - Error messages passed to BROKEN subroutines will now report the correct
295 - BROKEN function behavior is rationalized. You can now pass an
296 arbitrary argument to your BROKEN function, or return a value
/freebsd/share/mk/
H A Dsrc.opts.mk49 # hard-wired to 'no'. "Broken" here means not working or
52 # BROKEN was selected as the least imperfect one considered at the
319 # Bad coupling for libsecure stuff with bearssl and efi, so broken on EFI
327 # KBOOT is only for powerpc64 (powerpc64le broken) amd64 and aarch64
340 # Further debugging is required -- probably they are just broken on big
371 # Broken on 32-bit arm, kernel module compile errors
/freebsd/contrib/jemalloc/include/jemalloc/internal/
H A Djemalloc_internal_includes.h5 * jemalloc can conceptually be broken into components (arena, tcache, etc.),
6 * but there are circular dependencies that cannot be broken without
24 * We're now in an intermediate state: we've broken up the header files to avoid
28 * its translation unit). Each component is now broken up into multiple header
/freebsd/contrib/kyua/model/
H A Dtest_result_test.cpp81 broken,
107 GOOD_TEST(broken, false, model::test_result_broken);
115 broken,
116 "model::test_result{type='broken', reason='foo'}",
/freebsd/sys/contrib/device-tree/src/arm64/allwinner/
H A Dsun50i-a64-pine64-lts.dts24 broken-cd; /* card detect is broken on *some* boards */
/freebsd/sys/conf/
H A Dkern.opts.mk65 # Some options are totally broken on some architectures. We disable them. If you
72 # Broken on 32-bit arm, kernel module compile errors
82 # EFI doesn't exist on powerpc and is broken on i386
144 # unsupported/badly broken on this architecture.

12345678910>>...70