/openbmc/linux/tools/memory-model/scripts/ |
H A D | judgelitmus.sh | 116 if test "$outcome" = DEADLOCK 122 echo " !!! Unexpected non-$outcome verification" $litmus 125 echo " !!! Unexpected non-$outcome verification" >> $LKMM_DESTDIR/$litmusout 2>&1 131 echo " !!! Unexpected non-$outcome deadlock" $litmus 134 echo " !!! Unexpected non-$outcome deadlock" $litmus >> $LKMM_DESTDIR/$litmusout 2>&1 137 elif grep '^Observation' $LKMM_DESTDIR/$litmusout | grep -q $outcome || test "$outcome" = Maybe 141 if test \( -n "$LKMM_HW_MAP_FILE" -a "$outcome" = Sometimes \) -o -n "$datarace_modeled" 149 echo " $flag non-$outcome verification" $litmus 152 echo " $flag non-$outcome verification" >> $LKMM_DESTDIR/$litmusout 2>&1
|
/openbmc/openbmc/poky/bitbake/lib/toaster/tests/browser/ |
H A D | test_most_recent_builds_states.py | 53 build.outcome = Build.IN_PROGRESS 103 task1.outcome = Task.OUTCOME_SUCCESS 120 task2.outcome = Task.OUTCOME_SUCCESS 143 build.outcome = Build.SUCCEEDED 161 build.outcome = Build.FAILED 192 build.outcome = Build.CANCELLED
|
H A D | test_builddashboard_page_artifacts.py | 60 started_on=now, completed_on=now, outcome=Build.SUCCEEDED) 86 outcome=Build.SUCCEEDED) 142 outcome=Build.SUCCEEDED)
|
H A D | test_toastertable_ui.py | 79 outcome=Build.SUCCEEDED) 85 outcome=Build.SUCCEEDED)
|
H A D | test_builddashboard_page.py | 38 outcome=Build.SUCCEEDED) 43 outcome=Build.SUCCEEDED) 48 outcome=Build.FAILED)
|
H A D | test_project_page.py | 39 outcome=Build.IN_PROGRESS)
|
/openbmc/u-boot/tools/buildman/ |
H A D | test.py | 171 def assertSummary(self, text, arch, plus, boards, outcome=OUTCOME_ERR): argument 173 expected_colour = (col.GREEN if outcome == OUTCOME_OK else 174 col.YELLOW if outcome == OUTCOME_WARN else col.RED) 224 outcome=OUTCOME_WARN) 226 outcome=OUTCOME_WARN) 228 outcome=OUTCOME_WARN) 239 outcome=OUTCOME_OK) 249 outcome=OUTCOME_WARN) 272 outcome=OUTCOME_OK) 286 outcome=OUTCOME_OK)
|
H A D | builder.py | 780 outcome = self.GetBuildOutcome(commit_upto, board.target, 783 board_dict[board.target] = outcome 786 for line in outcome.err_lines: 811 if outcome.config: 812 for key, value in outcome.config[fname].iteritems(): 817 if outcome.environment: 818 for key, value in outcome.environment.iteritems(): 963 outcome = result['_outcome'] 965 for fname in outcome.func_sizes: 968 outcome.func_sizes[fname]) [all …]
|
/openbmc/openbmc/meta-openembedded/meta-python/recipes-devtools/python/ |
H A D | python3-outcome_1.3.0.post0.bb | 1 SUMMARY = "Capture the outcome of Python function calls." 2 HOMEPAGE = "https://github.com/python-trio/outcome" 20 python3-outcome \
|
H A D | python3-trio_0.27.0.bb | 16 python3-outcome \
|
/openbmc/linux/tools/memory-model/litmus-tests/ |
H A D | MP+poonceonces.litmus | 6 * Can the counter-intuitive message-passing outcome be prevented with 27 exists (1:r0=1 /\ 1:r1=0) (* Bad outcome. *)
|
H A D | LB+poonceonces.litmus | 6 * Can the counter-intuitive outcome for the load-buffering pattern
|
H A D | MP+pooncerelease+poacquireonce.litmus | 28 exists (1:r0=1 /\ 1:r1=0) (* Bad outcome. *)
|
H A D | MP+fencewmbonceonce+fencermbonceonce.litmus | 30 exists (1:r0=1 /\ 1:r1=0) (* Bad outcome. *)
|
H A D | MP+onceassign+derefonce.litmus | 33 exists (1:r0=x /\ 1:r1=0) (* Bad outcome. *)
|
/openbmc/linux/fs/xfs/scrub/ |
H A D | alloc.c | 175 enum xbtree_recpacking outcome; in xchk_xref_is_used_space() local 181 error = xfs_alloc_has_records(sc->sa.bno_cur, agbno, len, &outcome); in xchk_xref_is_used_space() 184 if (outcome != XBTREE_RECPACKING_EMPTY) in xchk_xref_is_used_space()
|
H A D | refcount.c | 587 enum xbtree_recpacking outcome; in xchk_xref_is_not_shared() local 594 XFS_REFC_DOMAIN_SHARED, agbno, len, &outcome); in xchk_xref_is_not_shared() 597 if (outcome != XBTREE_RECPACKING_EMPTY) in xchk_xref_is_not_shared() 608 enum xbtree_recpacking outcome; in xchk_xref_is_not_cow_staging() local 615 agbno, len, &outcome); in xchk_xref_is_not_cow_staging() 618 if (outcome != XBTREE_RECPACKING_EMPTY) in xchk_xref_is_not_cow_staging()
|
/openbmc/openbmc/poky/bitbake/lib/toaster/tests/builds/ |
H A D | buildtest.py | 144 while Build.objects.get(pk=build_pk).outcome == Build.IN_PROGRESS: 151 self.assertEqual(Build.objects.get(pk=build_pk).outcome, 155 logger.info("\nBuild finished %s" % build_request.build.outcome)
|
H A D | test_core_image_min.py | 73 tasks = Task.objects.filter(outcome=2).values('id', 'sstate_result') 164 builds = Build.objects.filter(outcome=0).values('id') 215 builds = Build.objects.filter(outcome=0).values('id')
|
/openbmc/openbmc/poky/bitbake/lib/toaster/orm/ |
H A D | models.py | 214 Q(outcome=Build.IN_PROGRESS) | 215 Q(outcome=Build.CANCELLED) 229 return Build.objects.filter( id = build_id )[ 0 ].outcome 477 outcome = models.IntegerField(choices=BUILD_OUTCOME, default=IN_PROGRESS) variable in Build 510 Q(outcome=Build.SUCCEEDED) | \ 511 Q(outcome=Build.FAILED) | \ 512 Q(outcome=Build.CANCELLED) 515 builds.filter(outcome=Build.IN_PROGRESS).order_by("-started_on"), 546 completeper = tf.exclude(outcome=Task.OUTCOME_NA).count()*100 // tfc 664 return Build.BUILD_OUTCOME[int(self.outcome)][1] [all …]
|
/openbmc/openbmc/poky/bitbake/lib/toaster/bldcontrol/management/commands/ |
H A D | checksettings.py | 158 …Build.objects.filter(outcome=Build.IN_PROGRESS).update(outcome=Build.FAILED, completed_on=timezone…
|
H A D | runbuilds.py | 92 br.build.outcome = Build.FAILED 121 br.build.outcome = Build.FAILED 139 br.build.outcome = Build.FAILED
|
/openbmc/openbmc/poky/meta/recipes-support/libevent/libevent/ |
H A D | 0004-test-retriable-tests-are-marked-failed-only-when-all-a.patch | 29 enum outcome outcome;
|
/openbmc/linux/tools/memory-model/Documentation/ |
H A D | recipes.txt | 155 value of r1 be 0. The reason for this surprising outcome is that 188 sufficiently to rule out the counter-intuitive outcome. 206 outcome in which the first load sees the value written by the second store 360 One way of avoiding the counter-intuitive outcome is through the use of a 401 the counter-intuitive outcome where the kernel overwrites the data 496 this counter-intuitive outcome. 517 "if (@cond)". The full barriers prevent the undesirable outcome where 550 avoid a counter-intuitive outcome depends on the types of relations 551 linking the memory accesses for the outcome in question:
|
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/templatetags/ |
H A D | projecttags.py | 103 elif task_object.outcome == task_object.OUTCOME_FAILED: 105 elif task_object.outcome == task_object.OUTCOME_SUCCESS and show_green:
|