Comment: | First pass integration of the fix from Peter Bex for mtconfigf eval. Not quite working yet... |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.65-try3 |
Files: | files | file ages | folders |
SHA1: |
e057f70f5187dd2e058d15950be4eac0 |
User & Date: | matt on 2019-11-12 23:26:13 |
Other Links: | branch diff | manifest | tags |
2019-11-12
| ||
23:57 | Added import of megamod for eval in configf check-in: 2415804df9 user: matt tags: v1.65-try3 | |
23:26 | First pass integration of the fix from Peter Bex for mtconfigf eval. Not quite working yet... check-in: e057f70f51 user: matt tags: v1.65-try3 | |
2019-11-11
| ||
22:40 | Fixed Makefile in example check-in: c54ed87ce3 user: matt tags: v1.65-try3 | |
Modified Makefile from [2f4f3f2a42] to [4fd2cd6834].
28 29 30 31 32 33 34 35 | 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 | + - + + + + + + + + - + + + + | # http-transport.scm filedb.scm tdb.scm \ # client.scm mt.scm \ # ezsteps.scm lock-queue.scm sdb.scm \ # rmt.scm api.scm subrun.scm \ # portlogger.scm archive.scm env.scm diff-report.scm cgisetup/models/pgdb.scm SRCFILES= # removed from MSRCFILES: ftail.scm # module source files |
73 74 75 76 77 78 79 | 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 | - - + + | PNGFILES = $(shell cd docs/manual;ls *png) #all : $(PREFIX)/bin/.$(ARCHSTR) mtest dboard mtut ndboard all : $(PREFIX)/bin/.$(ARCHSTR) mtest dboard mtut tcmt # why were the files mofiles/ftail.o mofiles/rmtmod.o mofiles/commonmod.o listed on this target when MOFILES are there? # Removed non module .o files (i.e. $(OFILES) |
171 172 173 174 175 176 177 178 | 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 | + - | # for the modularized stuff mofiles/commonmod.o : megatest-fossil-hash.scm mofiles/dbmod.o : mofiles/commonmod.o mofiles/keysmod.o mofiles/tasksmod.o mofiles/odsmod.o mofiles/commonmod.o : mofiles/configfmod.o mofiles/processmod.o mofiles/rmtmod.o : mofiles/dbmod.o mofiles/commonmod.o mofiles/apimod.o mofiles/apimod.o : mofiles/megamod.o mofiles/dbmod.o # Removed from megamod.o dep: mofiles/ftail.o mofiles/megamod.o : \ |
359 360 361 362 363 364 365 | 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 | - + + + + + - | mkdir -p ext-tests cd ext-tests;fossil open --nested $(MTQA_FOSSIL) $(MTQA_FOSSIL) : fossil clone https://www.kiatoa.com/fossils/megatest_qa $(MTQA_FOSSIL) clean : |
Modified megatest.scm from [fae0f224b5] to [98225c2e93].
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 | 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 | + + + - - + + | (declare (uses dbmod)) (import dbmod) ;; (declare (uses configfmod)) ;; (import configfmod) (declare (uses megamod)) (import megamod) ;; invoke the imports (declare (uses megamod.import)) (configf:set-debug-printers debug:print debug:print-info debug:print-error *default-log-port*) ;; (declare (uses tdb)) ;; (declare (uses mt)) ;; (declare (uses api)) ;; (declare (uses tasks)) ;; only used for debugging. ;; (declare (uses env)) ;; (declare (uses diff-report)) |