Overview
Comment: | Fixed typo, added hander for scenaio where can receive bad data |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.60 |
Files: | files | file ages | folders |
SHA1: |
660a006630f92d3de6afdfa123e6234c |
User & Date: | matt on 2014-08-28 00:37:13 |
Other Links: | branch diff | manifest | tags |
Context
2014-08-28
| ||
00:47 | Fixed broken query check-in: a09b4531f6 user: matt tags: v1.60 | |
00:37 | Fixed typo, added hander for scenaio where can receive bad data check-in: 660a006630 user: matt tags: v1.60 | |
00:04 | Reuse ports when possible check-in: 4382ee655e user: matt tags: v1.60 | |
Changes
Modified api.scm from [904aa00978] to [5666495fd8].
︙ | |||
83 84 85 86 87 88 89 | 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 | - + | ((get-count-tests-running-in-jobgroup) (apply db:get-count-tests-running-in-jobgroup dbstruct params)) ((delete-test-records) (apply db:delete-test-records dbstruct params)) ((delete-old-deleted-test-records) (apply db:delete-old-deleted-test-records dbstruct params)) ((test-set-status-state) (apply db:test-set-status-state dbstruct params)) ((get-previous-test-run-record) (apply db:get-previous-test-run-record dbstruct params)) ((get-matching-previous-test-run-records)(apply db:get-matching-previous-test-run-records dbstruct params)) ((test-get-logfile-info) (apply db:test-get-logfile-info dbstruct params)) |
︙ |
Modified tests.scm from [4ca513a697] to [9299be9897].
︙ | |||
348 349 350 351 352 353 354 | 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 | + - + + + + + | "<td>" state "</td>" "<td><font color=" (common:get-color-from-status status) ">" status "</font></td>" "<td>" (if (equal? comment "") " " comment) "</td>" "</tr>")))) (if (list? testdat) |
︙ |