227
228
229
230
231
232
233
234
235
236
237
238
239
240
|
(tests (mt:get-tests-for-run run-id testnamepatt states statuses
not-in: *hide-not-hide*
sort-by: sort-by
sort-order: sort-order))
;; NOTE: bubble-up also sets the global *all-item-test-names*
;; (tests (bubble-up tmptests priority: bubble-type))
(key-vals (cdb:remote-run db:get-key-vals #f run-id)))
;; Not sure this is needed?
(set! referenced-run-ids (cons run-id referenced-run-ids))
(if (> (length tests) maxtests)
(set! maxtests (length tests)))
(if (or (not *hide-empty-runs*) ;; this reduces the data burden when set
(not (null? tests)))
(let ((dstruct (vector run tests key-vals)))
|
>
>
|
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
|
(tests (mt:get-tests-for-run run-id testnamepatt states statuses
not-in: *hide-not-hide*
sort-by: sort-by
sort-order: sort-order))
;; NOTE: bubble-up also sets the global *all-item-test-names*
;; (tests (bubble-up tmptests priority: bubble-type))
(key-vals (cdb:remote-run db:get-key-vals #f run-id)))
;; NOTE: 11/01/2013 This routine is *NOT* getting called excessively.
;; (debug:print 0 "Getting data for run " run-id " with key-vals=" key-vals)
;; Not sure this is needed?
(set! referenced-run-ids (cons run-id referenced-run-ids))
(if (> (length tests) maxtests)
(set! maxtests (length tests)))
(if (or (not *hide-empty-runs*) ;; this reduces the data burden when set
(not (null? tests)))
(let ((dstruct (vector run tests key-vals)))
|