Lines Matching refs:WORKING
6 """Report whether DUTs are working or broken.
11 determine whether they're "working" or "broken". For purposes of
13 before it can be used for further testing", and "working" means "not
49 -w/--working - Only include hosts in a working state.
50 -n/--broken - Only include hosts in a non-working state. Hosts
51 with no job history are considered non-working.
61 surrounding the DUT's last change from working to broken,
66 * With the --working or --broken options, the list of host names
72 -o/--oneline - Use the one-line summary with the --working or
95 job's logs. The status indicates the working or broken status after
98 'OK' Indicates that the DUT was believed working after the job.
126 status_history.WORKING: 'OK',
151 if status == status_history.WORKING:
152 return arguments.working
199 This function handles both the default format for --working
331 * If neither --broken nor --working was used, then --oneline
333 * If neither --broken nor --working was used, included both
334 working and broken DUTs.
342 arguments.oneline = (not arguments.working and
344 if not arguments.working and not arguments.broken:
345 arguments.working = True
414 parser.add_argument('-w', '--working', action='store_true',
415 help='List working devices by name only')
417 help='List non-working devices by name only')