Comment: | Fixed crash in server mode due to wrongly remoting the update test meta call |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.55 |
Files: | files | file ages | folders |
SHA1: |
37d6497d185cf507ad475d235c3ff512 |
User & Date: | matt on 2013-11-02 19:15:51 |
Other Links: | branch diff | manifest | tags |
2013-11-02
| ||
20:30 | Experimental read-only support check-in: 8d372e8f55 user: matt tags: v1.55 | |
19:15 | Fixed crash in server mode due to wrongly remoting the update test meta call check-in: 37d6497d18 user: matt tags: v1.55 | |
18:37 | Adding additional safety net for testdat.db access check-in: 0e0610387a user: matt tags: v1.55 | |
Modified runs.scm from [5418f204f0] to [4db13ad8f7].
234 235 236 237 238 239 240 | ;; get stuck due to becoming inaccessible from a failed test. I.e. if test B depends ;; on test A but test B reached the point on being registered as NOT_STARTED and test ;; A failed for some reason then on re-run using -keepgoing the run can never complete. (cdb:delete-tests-in-state *runremote* run-id "NOT_STARTED") (cdb:remote-run db:set-tests-state-status #f run-id test-names #f "FAIL" "NOT_STARTED" "FAIL"))) ;; Ensure all tests are registered in the test_meta table | | | 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 | ;; get stuck due to becoming inaccessible from a failed test. I.e. if test B depends ;; on test A but test B reached the point on being registered as NOT_STARTED and test ;; A failed for some reason then on re-run using -keepgoing the run can never complete. (cdb:delete-tests-in-state *runremote* run-id "NOT_STARTED") (cdb:remote-run db:set-tests-state-status #f run-id test-names #f "FAIL" "NOT_STARTED" "FAIL"))) ;; Ensure all tests are registered in the test_meta table (runs:update-all-test_meta #f) ;; now add non-directly referenced dependencies (i.e. waiton) ;;====================================================================== ;; refactoring this block into tests:get-full-data ;; ;; What happended, this code is now duplicated in tests!? ;; |