Overview
Comment: | Support for /QUICK |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.64 |
Files: | files | file ages | folders |
SHA1: |
b93c0e396c0dfa95c4a035ab72d354d6 |
User & Date: | matt on 2017-03-20 17:56:54 |
Other Links: | branch diff | manifest | tags |
Context
2017-03-20
| ||
22:48 | Added sexpr output for list runs. Added example of runname to .mtutil.scm check-in: 6fde6a49d7 user: matt tags: v1.64 | |
17:56 | Support for /QUICK check-in: b93c0e396c user: matt tags: v1.64 | |
15:15 | merged v1.64-new-pkts check-in: 77cb77fb6a user: bjbarcla tags: v1.64 | |
Changes
Modified megatest.config from [0ca318f7e9] to [8614e9baa4].
︙ | |||
8 9 10 11 12 13 14 | 8 9 10 11 12 13 14 15 | + | ext-tests path=ext-tests; targtrans=prefix-contour [contours] # mode-patt/tag-expr quick selector=quick/QUICKPATT full areas=fullrun,ext-tests; selector=all/MAXPATT all areas=fullrun,ext-tests snazy areas=%; selector=/QUICKPATT |
Modified mtut.scm from [9e88c442a2] to [61449c6dc0].
︙ | |||
440 441 442 443 444 445 446 | 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 | + - + | ;; generate the pkt keys directly. ;; ii. Pass the pkt keys and values to this proc and go from there. ;; iii. Maybe have an abstraction alist with meaningful names for the pkt keys ;; ;; Override the run start time record with sched. Usually #f is fine. ;; (define (create-run-pkt mtconf action area runkey runname mode-patt tag-expr pktsdir reason contour sched dbdest append-conf) (let* ((good-val (lambda (inval)(and inval (string? inval)(not (string-null? inval))))) |
︙ | |||
474 475 476 477 478 479 480 | 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 | - - - - - - + + + + + + | (let-values (((uuid pkt) (command-line->pkt (if action action "run") (append `(("-start-dir" . ,area-path) ("-msg" . ,reason) ("-contour" . ,contour)) |
︙ | |||
715 716 717 718 719 720 721 | 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 | - + | (for-each (lambda (contour) (print "contour: " contour) (let* ((val (or (configf:lookup mtconf "contours" contour) "")) (val-alist (val->alist val)) (areas (string-split (or (alist-ref 'areas val-alist) "") ",")) (selector (alist-ref 'selector val-alist)) |
︙ |