Lines Matching refs:outcome
1296 Run the examples in `test`. Write the outcome of each example
1311 SUCCESS, FAILURE, BOOM = range(3) # `outcome` state
1363 outcome = FAILURE # guilty until proved innocent or insane
1369 outcome = SUCCESS
1380 outcome = BOOM
1384 outcome = SUCCESS
1391 outcome = SUCCESS
1393 # Report the outcome.
1394 if outcome is SUCCESS:
1397 elif outcome is FAILURE:
1401 elif outcome is BOOM:
1407 assert False, ("unknown outcome", outcome)