Overview
Comment: | Added none as transport option |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v2.0001-configurable-transport |
Files: | files | file ages | folders |
SHA1: |
d8959da4df0a8e0788d130b334c3ae77 |
User & Date: | matt on 2022-01-16 08:55:17 |
Other Links: | branch diff | manifest | tags |
Context
2022-01-16
| ||
12:24 | no transport option basically working (db locks after a while). check-in: 63c4fcc524 user: matt tags: v2.0001-configurable-transport | |
08:55 | Added none as transport option check-in: d8959da4df user: matt tags: v2.0001-configurable-transport | |
08:05 | configurability working ok check-in: ac3127fbf2 user: matt tags: v2.0001-configurable-transport | |
Changes
Modified Makefile from [db842b7763] to [54802c9b97].
︙ | |||
28 29 30 31 32 33 34 | 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | - + | # add dboard mtut and tcmt back later # Configuration stuff transport-flavor : @echo Creating transport-flavor with full as flavor. Options include: full, simple echo full > transport-flavor |
︙ |
Modified configure from [a623bd293e] to [18c7686f57].
︙ | |||
12 13 14 15 16 17 18 19 20 21 22 23 24 25 | 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | + + | # Megatest is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with Megatest. If not, see <http://www.gnu.org/licenses/>. # Flavors include: simple, full and none # look at build.config (not a version controlled file and # create ulex.scm and dbmgr.scm if [[ -e transport-flavor ]];then FLAVOR=$(cat transport-flavor) else |
︙ |
Modified dcommon.scm from [217250003b] to [a72cc297c4].
︙ | |||
24 25 26 27 28 29 30 31 32 33 34 35 36 37 | 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | + | (declare (uses mtver)) (declare (uses debugprint)) (declare (uses commonmod)) (declare (uses configfmod)) (declare (uses rmtmod)) (declare (uses mtargs)) (declare (uses testsmod)) (declare (uses dbmgrmod)) (module dcommon * (import scheme chicken.base chicken.condition |
︙ | |||
60 61 62 63 64 65 66 67 68 69 70 71 72 73 | 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 | + | srfi-69 sparse-vectors srfi-1 ) (import mtver dbmod dbmgrmod commonmod debugprint configfmod rmtmod ;; gutils (prefix mtargs args:) testsmod) |
︙ |
Modified rmtmod.scm from [23e97ebe5e] to [1b0587b637].
︙ | |||
1189 1190 1191 1192 1193 1194 1195 | 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 | - + | #t)))) (debug:print-info 4 *default-log-port* "starting exit process, finalizing databases.") (if (and no-hurry (debug:debug-mode 18)) (rmt:print-db-stats)) (let ((th1 (make-thread (lambda () ;; thread for cleaning up, give it five seconds (let* ((start-time (current-seconds))) |
︙ |
Modified tests/simplerun/tests/test1/testconfig from [db2c27ffef] to [b9db33e554].
︙ | |||
22 23 24 25 26 27 28 | 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | - + | # Test requirements are specified here [requirements] # waiton setup priority 0 # Iteration for your tests are controlled by the items section |
︙ |
Added ulex-none/dbmgr.scm version [66aa956084].