Overview
Comment: | replace one missed cdb:remote-run call |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
8e4249db717b50b07ab4ae2e2dc00afe |
User & Date: | matt on 2013-11-16 23:22:53 |
Other Links: | manifest | tags |
Context
2013-11-17
| ||
09:26 | Removed all the translation stuff that was implemented for json. check-in: 7fe8af32e5 user: matt tags: trunk | |
2013-11-16
| ||
23:22 | replace one missed cdb:remote-run call check-in: 8e4249db71 user: matt tags: trunk | |
23:13 | Switched away from json check-in: 575dfee04c user: matt tags: trunk | |
Changes
Modified db.scm from [cba05a0b7c] to [6118514997].
︙ | |||
1423 1424 1425 1426 1427 1428 1429 | 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 | - - - - - - | (conc "SELECT id,run_id,testname,state,status,event_time,host,cpuload,diskfree,uname,rundir,item_path,run_duration,final_logf,comment FROM tests WHERE id in (" (string-intersperse (map conc test-ids) ",") ");")) res))) (define (db:get-test-info db run-id testname item-path) (db:get-test-info-by-id db (db:get-test-id db run-id testname item-path))) |
︙ | |||
1454 1455 1456 1457 1458 1459 1460 | 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 | - + | ;; MUST BE CALLED local! (define (db:test-get-paths-matching db keynames target fnamepatt #!key (res '())) ;; BUG: Move the values derived from args to parameters and push to megatest.scm (let* ((testpatt (if (args:get-arg "-testpatt")(args:get-arg "-testpatt") "%")) (statepatt (if (args:get-arg ":state") (args:get-arg ":state") "%")) (statuspatt (if (args:get-arg ":status") (args:get-arg ":status") "%")) (runname (if (args:get-arg ":runname") (args:get-arg ":runname") "%")) |
︙ |