500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
|
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
|
+
-
-
+
+
|
(1 "n/a")
(2 "PASS")
(3 "SKIP")
(4 "WARN")
(5 "WAIVED")
(6 "CHECK")
(7 "STUCK/DEAD")
(8 "DEAD")
(8 "FAIL")
(9 "ABORT")))
(9 "FAIL")
(10 "ABORT")))
(define *common:ended-states* ;; states which indicate the test is stopped and will not proceed
'("COMPLETED" "ARCHIVED" "KILLED" "KILLREQ" "STUCK" "INCOMPLETE"))
(define *common:badly-ended-states* ;; these roll up as CHECK, i.e. results need to be checked
'("KILLED" "KILLREQ" "STUCK" "INCOMPLETE" "DEAD"))
|