Overview
Comment: | Fixed typo in summarize-tests |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
b48eda5c31e7cca9fead44d46ada80a6 |
User & Date: | mrwellan on 2012-04-11 13:48:15 |
Other Links: | manifest | tags |
Context
2012-04-11
| ||
14:15 | Fixed issue where config is called with filename only and no path check-in: ea67e40430 user: mrwellan tags: trunk | |
13:48 | Fixed typo in summarize-tests check-in: b48eda5c31 user: mrwellan tags: trunk | |
2012-04-10
| ||
09:51 | Fixed running of single item. Decreased delays when can't launch tests as it was constraining launch rate unnecessarily check-in: 79c3028409 user: mrwellan tags: trunk | |
Changes
Modified megatest.scm from [cb79cd83f5] to [8aad599e04].
︙ | ︙ | |||
633 634 635 636 637 638 639 | (db:load-test-data db test-id)) (if (args:get-arg "-setlog") (let ((logfname (args:get-arg "-setlog"))) (rdb:test-set-log! db test-id logfname))) (if (args:get-arg "-set-toplog") (rtests:test-set-toplog! db run-id test-name (args:get-arg "-set-toplog"))) (if (args:get-arg "-summarize-items") | | | 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 | (db:load-test-data db test-id)) (if (args:get-arg "-setlog") (let ((logfname (args:get-arg "-setlog"))) (rdb:test-set-log! db test-id logfname))) (if (args:get-arg "-set-toplog") (rtests:test-set-toplog! db run-id test-name (args:get-arg "-set-toplog"))) (if (args:get-arg "-summarize-items") (tests:summarize-items db run-id test-name #t)) ;; do force here (if (args:get-arg "-runstep") (if (null? remargs) (begin (debug:print 0 "ERROR: nothing specified to run!") (sqlite3:finalize! db) (exit 6)) (let* ((stepname (args:get-arg "-runstep")) |
︙ | ︙ |