Megatest

Diff
Login

Differences From Artifact [ddf4fcce25]:

To Artifact [428573321e]:


944
945
946
947
948
949
950

951


952












953
954
955
956
957
958
959
		    (not (member 'exclusive testmode)))))
      ;; (hash-table-delete! *max-tries-hash* (db:test-make-full-name test-name item-path))
      ;; we are going to reset all the counters for test retries by setting a new hash table
      ;; this means they will increment only when nothing can be run
      (set! *max-tries-hash* (make-hash-table))
      ;; well, first lets see if cpu load throttling is enabled. If so wait around until the
      ;; average cpu load is under the threshold before continuing

      (if (configf:lookup *configdat* "jobtools" "maxload") ;; only gate if maxload is specified


	  (common:wait-for-cpuload maxload numcpus waitdelay))












      (run:test run-id run-info keyvals runname test-record flags #f test-registry all-tests-registry)
      (runs:incremental-print-results run-id)
      (hash-table-set! test-registry (db:test-make-full-name test-name item-path) 'running)
      (runs:shrink-can-run-more-tests-count runsdat)  ;; DELAY TWEAKER (still needed?)
      ;; (thread-sleep! *global-delta*)
      (if (or (not (null? tal))(not (null? reg)))
	  (list (runs:queue-next-hed tal reg reglen regfull)







>
|
>
>
|
>
>
>
>
>
>
>
>
>
>
>
>







944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
		    (not (member 'exclusive testmode)))))
      ;; (hash-table-delete! *max-tries-hash* (db:test-make-full-name test-name item-path))
      ;; we are going to reset all the counters for test retries by setting a new hash table
      ;; this means they will increment only when nothing can be run
      (set! *max-tries-hash* (make-hash-table))
      ;; well, first lets see if cpu load throttling is enabled. If so wait around until the
      ;; average cpu load is under the threshold before continuing
      (let ((hh       (common:get-homehost))
            (maxload  (configf:lookup *configdat* "jobtools" "maxload")))
        (if maxload ;; only gate if maxload is specified
            (let loadloop ((load-dat #f))
              (common:wait-for-cpuload maxload numcpus waitdelay) ;; first wait for local load to decrease if it happens to be high
              (if (and hh
                       (not (common:on-homehost?)))
                  (let* ((hh-load-dat (common:get-normalized-cpu-load hh))
                         (hh-load     (if hh-load-dat
                                          (alist-ref 'adj-cpu-load hh-load-dat)
                                          #f)))
                    (cond
                     ((not hh-load)(debug:print-info 0 *default-log-port* "Could not determine load on homehost. Proceeding as if load is fine ..."))
                     ((> hh-load maxload)
                      (debug:print-info 0 *default-log-port "Load too high on homehost, delaying before launching tests.")
                     

      (run:test run-id run-info keyvals runname test-record flags #f test-registry all-tests-registry)
      (runs:incremental-print-results run-id)
      (hash-table-set! test-registry (db:test-make-full-name test-name item-path) 'running)
      (runs:shrink-can-run-more-tests-count runsdat)  ;; DELAY TWEAKER (still needed?)
      ;; (thread-sleep! *global-delta*)
      (if (or (not (null? tal))(not (null? reg)))
	  (list (runs:queue-next-hed tal reg reglen regfull)