Megatest

Diff
Login

Differences From Artifact [b86363ee8c]:

To Artifact [56c5cd7434]:


616
617
618
619
620
621
622

623
624
625
626
627

628
629
630
631
632
633
634
	 (test-records  (make-hash-table))
	 (test-names    (tests:get-valid-tests *toppath* '()))
	 (sorted-testnames #f)
	 (action        "-runtests")
	 (cmdln         "")
	 (runlogs       (make-hash-table))
	 (key-listboxes #f)

	 (update-keyvals (lambda ()
			   (let ((targ (map (lambda (x)
					      (iup:attribute x "VALUE"))
					    (car (dashboard:update-target-selector key-listboxes)))))
			     (dboard:data-set-target! *data* targ)

			     (dashboard:update-run-command))))
	 (tests-draw-state (make-hash-table))) ;; use for keeping state of the test canvas
    (hash-table-set! tests-draw-state 'first-time #t)
    (hash-table-set! tests-draw-state 'scalef 8)
    (tests:get-full-data test-names test-records '())
    (set! sorted-testnames (tests:sort-by-priority-and-waiton test-records))
    







>





>







616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
	 (test-records  (make-hash-table))
	 (test-names    (tests:get-valid-tests *toppath* '()))
	 (sorted-testnames #f)
	 (action        "-runtests")
	 (cmdln         "")
	 (runlogs       (make-hash-table))
	 (key-listboxes #f)
	 (updater-for-runs #f)
	 (update-keyvals (lambda ()
			   (let ((targ (map (lambda (x)
					      (iup:attribute x "VALUE"))
					    (car (dashboard:update-target-selector key-listboxes)))))
			     (dboard:data-set-target! *data* targ)
			     (if updater-for-runs (updater-for-runs))
			     (dashboard:update-run-command))))
	 (tests-draw-state (make-hash-table))) ;; use for keeping state of the test canvas
    (hash-table-set! tests-draw-state 'first-time #t)
    (hash-table-set! tests-draw-state 'scalef 8)
    (tests:get-full-data test-names test-records '())
    (set! sorted-testnames (tests:sort-by-priority-and-waiton test-records))
    
679
680
681
682
683
684
685
686
687
688
689
690
691
692



















693


694

695
696
697
698
699
700
701
						      (dashboard:update-run-command))))
		  (default-cmd (car cmds-list)))
	     (iuplistbox-fill-list lb cmds-list selected-item: default-cmd)
	     (dboard:data-set-command! *data* default-cmd)
	     lb)))
	 (iup:frame
	  #:title "Runname"
	  (let* ((default-run-name (conc "ww" (seconds->work-week/day (current-seconds))))
		 (tb (iup:textbox #:expand "HORIZONTAL"
				 #:action (lambda (obj val txt)
					    ;; (print "obj: " obj " val: " val " unk: " unk)
					    (dboard:data-set-run-name! *data* txt) ;; (iup:attribute obj "VALUE"))
					    (dashboard:update-run-command))
				 #:value default-run-name)))



















	    (dboard:data-set-run-name! *data* default-run-name)


	    tb))

	 (iup:frame
	  #:title "SELECTORS"
	  (iup:vbox
	   ;; Text box for test patterns
	   (iup:frame
	    #:title "Test patterns (one per line)"
	    (iup:textbox #:action (lambda (val a b)







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







681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
						      (dashboard:update-run-command))))
		  (default-cmd (car cmds-list)))
	     (iuplistbox-fill-list lb cmds-list selected-item: default-cmd)
	     (dboard:data-set-command! *data* default-cmd)
	     lb)))
	 (iup:frame
	  #:title "Runname"
	   (let* ((default-run-name (conc "ww" (seconds->work-week/day (current-seconds))))
		  (tb (iup:textbox #:expand "HORIZONTAL"
				   #:action (lambda (obj val txt)
					      ;; (print "obj: " obj " val: " val " unk: " unk)
					      (dboard:data-set-run-name! *data* txt) ;; (iup:attribute obj "VALUE"))
					      (dashboard:update-run-command))
				   #:value default-run-name))
		  (lb (iup:listbox #:expand "HORIZONTAL"
				   #:dropdown "YES"
				   #:action (lambda (obj val index lbstate)
					      (iup:attribute-set! tb "VALUE" val)
					      (dboard:data-set-run-name! *data* val)
					      (dashboard:update-run-command))))
		  (refresh-runs-list (lambda ()
				       (let* ((target        (dboard:data-get-target-string *data*))
					      (runs-for-targ (mt:get-runs-by-patt *keys* "%" target))
					      (runs-header   (vector-ref runs-for-targ 0))
					      (runs-dat      (vector-ref runs-for-targ 1))
					      (run-names     (cons default-run-name 
								   (map (lambda (x)
									  (db:get-value-by-header x runs-header "runname"))
									runs-dat))))
					 (iup:attribute-set! lb "REMOVEITEM" "ALL")
					 (iuplistbox-fill-list lb run-names selected-item: default-run-name)))))
	     (set! updater-for-runs refresh-runs-list)
	     (refresh-runs-list)
	     (dboard:data-set-run-name! *data* default-run-name)
	     (iup:hbox
	      tb
	      lb)))

	 (iup:frame
	  #:title "SELECTORS"
	  (iup:vbox
	   ;; Text box for test patterns
	   (iup:frame
	    #:title "Test patterns (one per line)"
	    (iup:textbox #:action (lambda (val a b)