Index: common.scm ================================================================== --- common.scm +++ common.scm @@ -397,12 +397,13 @@ ;; (map print (map car (hash-table->alist (read-config "runconfigs.config" #f #t)))) (define (common:get-runconfig-targets #!key (configf #f)) (sort (map car (hash-table->alist (or configf - (read-config "runconfigs.config" - #f #t)))) + (read-config (conc *toppath* "/runconfigs.config") + #f #t) + (make-hash-table)))) string runtime 500)))) ;; low and high sync times treated as separate. - (if should-print (debug:print 0 "INFO: db sync, total run time " runtime " ms")) + (if should-print (debug:print 2 "INFO: db sync, total run time " runtime " ms")) (for-each (lambda (dat) (let ((tblname (car dat)) (count (cdr dat))) (set! tot-count (+ tot-count count)) Index: megatest-version.scm ================================================================== --- megatest-version.scm +++ megatest-version.scm @@ -1,7 +1,7 @@ ;; Always use two or four digit decimal ;; 1.01, 1.02...1.10,1.11,1,1101 ... 1.99,2.00.. (declare (unit megatest-version)) -(define megatest-version 1.6026) +(define megatest-version 1.6027)