Overview
Comment: | Merged fork |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.80 | v1.8011 |
Files: | files | file ages | folders |
SHA1: |
9fe68a8fb25c3fc0cd9fe17772df07f2 |
User & Date: | mrwellan on 2023-03-22 13:01:22 |
Other Links: | branch diff | manifest | tags |
Context
2023-03-22
| ||
19:40 | Changed .megatest to .mtdb in several places check-in: 332dd9df31 user: mmgraham tags: v1.80 | |
13:01 | Merged fork check-in: 9fe68a8fb2 user: mrwellan tags: v1.80, v1.8011 | |
09:05 | Merged mtdb change. check-in: a50d34f842 user: mrwellan tags: v1.80 | |
2023-03-21
| ||
16:10 | disabled syncing of test steps and test data check-in: c2e29b696d user: mmgraham tags: v1.80, v1.8009 | |
Changes
Modified db.scm from [d85a30ff09] to [89dbc08fee].
︙ | |||
4241 4242 4243 4244 4245 4246 4247 | 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 | - - | ;;====================================================================== ;; To sync individual run ;;====================================================================== (define (db:get-run-record-ids dbstruct target run keynames test-patt) (let* ((backcons (lambda (lst item)(cons item lst))) (all_tests '()) |
︙ | |||
4272 4273 4274 4275 4276 4277 4278 | 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 | - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - | (lambda (dbdat db) (sqlite3:fold-row backcons '() db (conc "SELECT id FROM tests WHERE run_id in (" run_id ") and testname like '" test-patt "'")) ) ) ) all_tests ) ) |
︙ |
Modified tasks.scm from [499c2cc5ba] to [122215daee].
︙ | |||
1077 1078 1079 1080 1081 1082 1083 | 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 | - - - - - - | (let* ((last-sync-time (if (args:get-arg "-since") (string->number (args:get-arg "-since")) (vector-ref area-info 3))) (smallest-last-update-time (make-hash-table)) (changed (if (and target run-name) (rmt:get-run-record-ids target run-name (rmt:get-keys) test-patt) (rmt:get-changed-record-ids last-sync-time))) (run-ids (alist-ref 'runs changed)) (test-ids (alist-ref 'tests changed)) |