Overview
Comment: | stuck in RUNNING fix |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.55 |
Files: | files | file ages | folders |
SHA1: |
ea809bf922ec5eefc7bcef3617738967 |
User & Date: | mrwellan on 2013-08-19 09:45:17 |
Other Links: | branch diff | manifest | tags |
Context
2013-08-19
| ||
09:47 | Merged in missing fix check-in: be405e8e2e user: mrwellan tags: v1.55 | |
09:45 | stuck in RUNNING fix check-in: ea809bf922 user: mrwellan tags: v1.55 | |
2013-08-16
| ||
13:36 | Added busy handler to lock-queue check-in: 234e173a33 user: mrwellan tags: v1.55 | |
Changes
Modified launch.scm from [54776b43d1] to [4c9a87543c].
︙ | ︙ | |||
243 244 245 246 247 248 249 | ((eq? rollup-status 2) 'warn) ((eq? rollup-status 0) 'pass) (else 'fail))) (next-status (cond ((eq? overall-status 'pass) this-step-status) ((eq? overall-status 'warn) (if (eq? this-step-status 'fail) 'fail 'warn)) | | > > > > > > | | | | 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 | ((eq? rollup-status 2) 'warn) ((eq? rollup-status 0) 'pass) (else 'fail))) (next-status (cond ((eq? overall-status 'pass) this-step-status) ((eq? overall-status 'warn) (if (eq? this-step-status 'fail) 'fail 'warn)) (else 'fail))) (next-state "RUNNING") ;; (cond ;; ((null? tal) ;; more to run? ;; "COMPLETED") ;; (else "RUNNING")) ) (debug:print 4 "Exit value received: " (vector-ref exit-info 2) " logpro-used: " logpro-used " this-step-status: " this-step-status " overall-status: " overall-status " next-status: " next-status " rollup-status: " rollup-status) (case next-status ((warn) (set! rollup-status 2) ;; NB// test-set-status! does rdb calls under the hood (tests:test-set-status! test-id next-state "WARN" (if (eq? this-step-status 'warn) "Logpro warning found" #f) #f)) ((pass) (tests:test-set-status! test-id next-state "PASS" #f #f)) (else ;; 'fail (set! rollup-status 1) ;; force fail (tests:test-set-status! test-id next-state "FAIL" (conc "Failed at step " stepname) #f) )))) (if (and (steprun-good? logpro-used (vector-ref exit-info 2)) (not (null? tal))) (loop (car tal) (cdr tal) stepname))) (debug:print 4 "WARNING: a prior step failed, stopping at " ezstep)))))))) (monitorjob (lambda () (let* ((start-seconds (current-seconds)) |
︙ | ︙ |