1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
|
test-name: test-name
item-path: item-path
jobgroup: jobgroup
waitons: waitons
testmode: testmode
newtal: newtal
itemmaps: itemmaps
;; prereqs-not-met: prereqs-not-met
)))
;; too-tight loop detection and delay, this might hide issues
;; that occur in long run times. Consider commenting when debugging
;;
(if (and (>= num-running max-concurrent-jobs)
(< (- (current-milliseconds) *last-loop-time-ms*) 500))
|
|
|
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
|
test-name: test-name
item-path: item-path
jobgroup: jobgroup
waitons: waitons
testmode: testmode
newtal: newtal
itemmaps: itemmaps
prereqs-not-met: '()
)))
;; too-tight loop detection and delay, this might hide issues
;; that occur in long run times. Consider commenting when debugging
;;
(if (and (>= num-running max-concurrent-jobs)
(< (- (current-milliseconds) *last-loop-time-ms*) 500))
|