Overview
Comment: | Added missing parameter to special case test status update |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
33fa93c34776868b630df142842f0160 |
User & Date: | mrwellan on 2012-01-18 13:47:09 |
Other Links: | manifest | tags |
Context
2012-01-22
| ||
22:03 | Added -target support for remove-runs check-in: fe1582c208 user: matt tags: trunk | |
2012-01-18
| ||
13:47 | Added missing parameter to special case test status update check-in: 33fa93c347 user: mrwellan tags: trunk | |
2012-01-11
| ||
11:28 | Partial work on unknown path check-in: 1db4f07cc5 user: mrwellan tags: trunk | |
Changes
Modified tests.scm from [23617ff8a1] to [bf12d3e572].
︙ | ︙ | |||
190 191 192 193 194 195 196 | db "UPDATE tests SET fail_count=(SELECT count(id) FROM tests WHERE run_id=? AND testname=? AND item_path != '' AND status='FAIL'), pass_count=(SELECT count(id) FROM tests WHERE run_id=? AND testname=? AND item_path != '' AND (status='PASS' OR status='WARN' OR status='WAIVED')) WHERE run_id=? AND testname=? AND item_path='';" run-id test-name run-id test-name run-id test-name) (if (equal? status "RUNNING") ;; running takes priority over all other states, force the test state to RUNNING | | | 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 | db "UPDATE tests SET fail_count=(SELECT count(id) FROM tests WHERE run_id=? AND testname=? AND item_path != '' AND status='FAIL'), pass_count=(SELECT count(id) FROM tests WHERE run_id=? AND testname=? AND item_path != '' AND (status='PASS' OR status='WARN' OR status='WAIVED')) WHERE run_id=? AND testname=? AND item_path='';" run-id test-name run-id test-name run-id test-name) (if (equal? status "RUNNING") ;; running takes priority over all other states, force the test state to RUNNING (sqlite3:execute db "UPDATE tests SET state=? WHERE run_id=? AND testname=? AND item_path='';" "RUNNING" run-id test-name) (sqlite3:execute db "UPDATE tests SET state=CASE WHEN (SELECT count(id) FROM tests WHERE run_id=? AND testname=? AND item_path != '' AND state in ('RUNNING','NOT_STARTED')) > 0 THEN 'RUNNING' ELSE 'COMPLETED' END, status=CASE WHEN fail_count > 0 THEN 'FAIL' WHEN pass_count > 0 AND fail_count=0 THEN 'PASS' ELSE 'UNKNOWN' END |
︙ | ︙ |