Overview
Comment: | Fix typo |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | launcher-exit-handling-refactor |
Files: | files | file ages | folders |
SHA1: |
56036da5c4d9e44759e6dbd48037f987 |
User & Date: | matt on 2015-11-11 20:47:02 |
Other Links: | branch diff | manifest | tags |
Context
2015-11-11
| ||
20:47 | All states supported now check-in: ab348d3b46 user: matt tags: v1.60 | |
20:47 | Fix typo Closed-Leaf check-in: 56036da5c4 user: matt tags: launcher-exit-handling-refactor | |
19:18 | refactor launcher handling of exit codes check-in: cc6c07fcb3 user: mrwellan tags: launcher-exit-handling-refactor | |
Changes
Modified launch.scm from [254cea039f] to [a8ea94019f].
︙ | ︙ | |||
142 143 144 145 146 147 148 | (this-step-status (cond ((and (eq? process-exit-status 2) logpro-used) 'warn) ;; logpro 2 = warnings ((and (eq? process-exit-status 3) logpro-used) 'check) ;; logpro 3 = check ((and (eq? process-exit-status 4) logpro-used) 'waived) ;; logpro 4 = abort ((and (eq? process-exit-status 5) logpro-used) 'abort) ;; logpro 4 = abort ((eq? process-exit-status 0) 'pass) ;; logpro 0 = pass (else 'fail))) | | | 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 | (this-step-status (cond ((and (eq? process-exit-status 2) logpro-used) 'warn) ;; logpro 2 = warnings ((and (eq? process-exit-status 3) logpro-used) 'check) ;; logpro 3 = check ((and (eq? process-exit-status 4) logpro-used) 'waived) ;; logpro 4 = abort ((and (eq? process-exit-status 5) logpro-used) 'abort) ;; logpro 4 = abort ((eq? process-exit-status 0) 'pass) ;; logpro 0 = pass (else 'fail))) (overall-status (cond ((eq? (launch:einf-rollup-status exit-info) 2) 'warn) ;; rollup-status (vector-ref exit-info 3) ((eq? (launch:einf-rollup-status exit-info) 0) 'pass) ;; (vector-ref exit-info 3) (else 'fail))) (next-status (cond ((eq? overall-status 'pass) this-step-status) ((eq? overall-status 'warn) (if (eq? this-step-status 'fail) 'fail 'warn)) |
︙ | ︙ |