Changes In Branch v1.90-fix-modes Through [ddfaeac922] Excluding Merge-Ins
This is equivalent to a diff from 62a9a80b8c to ddfaeac922
2024-02-09
| ||
20:38 | wip check-in: 1d37efe6c5 user: matt tags: v1.90-fix-modes | |
19:26 | get nfs, /tmp modes working check-in: ddfaeac922 user: matt tags: v1.90-fix-modes | |
16:06 | put back (declare (uses runsmod.import)), enhanced assert message for mismatched server/runid check-in: 332b8fc90d user: mmgraham tags: v1.90 | |
2024-02-08
| ||
20:39 | Move test_records.scm into commonmod.scm. Disabled uses of runsmod.import in megatest.scm. check-in: 62a9a80b8c user: matt tags: v1.90 | |
19:47 | Load db and key _records from commonmod only check-in: b5319490ec user: matt tags: v1.90 | |
Modified dashboard-transport-mode.scm from [2cfd93429c] to [770f5f2018].
1 2 3 4 5 6 7 8 9 10 11 12 | ;;====================================================================== ;; set up transport, db cache and sync methods ;; ;; sync-method: 'original, 'attach or 'none ;; cache-method: 'tmp or 'none ;; rmt:transport-mode: 'http, 'tcp, 'nfs ;; ;; NOTE: NOT ALL COMBINATIONS WORK ;; ;;====================================================================== ;; uncomment this block to test without tcp or cachedb | | | | | | | < | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | ;;====================================================================== ;; set up transport, db cache and sync methods ;; ;; sync-method: 'original, 'attach or 'none ;; cache-method: 'tmp or 'none ;; rmt:transport-mode: 'http, 'tcp, 'nfs ;; ;; NOTE: NOT ALL COMBINATIONS WORK ;; ;;====================================================================== ;; uncomment this block to test without tcp or cachedb (dbfile:sync-method 'none) (dbfile:cache-method 'none) (rmt:transport-mode 'nfs) ;; uncomment this block to test with tcp and cachedb ;; (dbfile:sync-method 'none) ;; original was causing crash on start. ;; (dbfile:cache-method 'none) ;; (rmt:transport-mode 'tcp) |
Modified megatest.scm from [32535e1bcd] to [e49309db33].
︙ | ︙ | |||
60 61 62 63 64 65 66 | (declare (uses apimod)) (declare (uses apimod.import)) (declare (uses rmtmod)) (declare (uses rmtmod.import)) (declare (uses tasksmod)) (declare (uses tasksmod.import)) (declare (uses testsmod)) | | | 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 | (declare (uses apimod)) (declare (uses apimod.import)) (declare (uses rmtmod)) (declare (uses rmtmod.import)) (declare (uses tasksmod)) (declare (uses tasksmod.import)) (declare (uses testsmod)) ;; (declare (uses testsmod.import)) (declare (uses subrunmod)) (declare (uses subrunmod.import)) (declare (uses archivemod)) (declare (uses archivemod.import)) (declare (uses runsmod)) ;; (declare (uses runsmod.import)) (declare (uses cpumod)) |
︙ | ︙ |
Modified transport-mode.scm from [9dbf69644d] to [8c66537e82].
1 2 3 4 5 6 7 8 9 10 11 12 | ;;====================================================================== ;; set up transport, db cache and sync methods ;; ;; sync-method: 'original, 'attach or 'none ;; cache-method: 'tmp 'none ;; rmt:transport-mode: 'http, 'tcp, 'nfs ;; ;; NOTE: NOT ALL COMBINATIONS WORK ;; ;;====================================================================== ;; uncomment this block to test without tcp | | | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | ;;====================================================================== ;; set up transport, db cache and sync methods ;; ;; sync-method: 'original, 'attach or 'none ;; cache-method: 'tmp 'none ;; rmt:transport-mode: 'http, 'tcp, 'nfs ;; ;; NOTE: NOT ALL COMBINATIONS WORK ;; ;;====================================================================== ;; uncomment this block to test without tcp (dbfile:sync-method 'none) (dbfile:cache-method 'none) (rmt:transport-mode 'nfs) ;; uncomment this block to test with tcp ;; (dbfile:sync-method 'attach) ;; attach) ;; original ;; (dbfile:cache-method 'tmp) ;; (rmt:transport-mode 'tcp) |