Overview
Comment: | Implemented WAIVER propagation, but not debugged |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | waiver-propagation |
Files: | files | file ages | folders |
SHA1: |
3ee9f5dc73302f9bc5bbf591fe5445ff |
User & Date: | matt on 2011-08-30 00:22:01 |
Other Links: | branch diff | manifest | tags |
Context
2011-08-30
| ||
22:44 | Completed WAIVER propagation check-in: 018b99afd8 user: matt tags: waiver-propagation | |
00:22 | Implemented WAIVER propagation, but not debugged check-in: 3ee9f5dc73 user: matt tags: waiver-propagation | |
00:09 | Wrote routine to get previous tests in the current run suite check-in: 6054963abb user: matt tags: waiver-propagation | |
Changes
Modified runs.scm from [9050f708b7] to [8cd804b0f7].
︙ | |||
118 119 120 121 122 123 124 | 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 | + - - + + + + | (if (and (null? results) (not (null? tal))) (loop (car tal)(cdr tal)) (car results))))))))) (define (test-set-status! db run-id test-name state status itemdat-or-path comment dat) (let ((real-status status) |
︙ | |||
190 191 192 193 194 195 196 | 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 | - - + + + - + | "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 WHERE run_id=? AND testname=? AND item_path='';" run-id test-name run-id test-name))) |
︙ |