Overview
Comment: | wip |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.6584-ck5 |
Files: | files | file ages | folders |
SHA1: |
69dd9a88192669db2202386264db9d1b |
User & Date: | matt on 2021-04-14 23:40:23 |
Other Links: | branch diff | manifest | tags |
Context
2021-04-14
| ||
23:46 | wip check-in: 766a159430 user: matt tags: v1.6584-ck5 | |
23:40 | wip check-in: 69dd9a8819 user: matt tags: v1.6584-ck5 | |
23:24 | wip check-in: 21ed5f0c54 user: matt tags: v1.6584-ck5 | |
Changes
Modified launchmod.scm from [cd179d448d] to [1c5a69d4fb].
︙ | ︙ | |||
21 22 23 24 25 26 27 28 29 30 31 32 33 34 | (declare (unit launchmod)) (declare (uses commonmod)) (declare (uses configfmod)) (declare (uses csv-xml)) (declare (uses dbmod)) (declare (uses debugprint)) (declare (uses keysmod)) (declare (uses mtargs)) (declare (uses mtmod)) (declare (uses mtver)) (declare (uses processmod)) (declare (uses rmtmod)) (declare (uses servermod)) | > | < | < | 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | (declare (unit launchmod)) (declare (uses commonmod)) (declare (uses configfmod)) (declare (uses csv-xml)) (declare (uses dbmod)) (declare (uses debugprint)) (declare (uses ezstepsmod)) (declare (uses keysmod)) (declare (uses mtargs)) (declare (uses mtmod)) (declare (uses mtver)) (declare (uses processmod)) (declare (uses rmtmod)) (declare (uses servermod)) (declare (uses subrunmod)) (declare (uses testsmod)) (module launchmod * (import scheme (prefix sqlite3 sqlite3:) chicken.base |
︙ | ︙ | |||
82 83 84 85 86 87 88 89 90 91 92 93 94 | sxml-transforms (prefix mtargs args:) commonmod configfmod dbmod debugprint keysmod mtmod mtver processmod rmtmod servermod | > < < | | 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 | sxml-transforms (prefix mtargs args:) commonmod configfmod dbmod debugprint ezstepsmod keysmod mtmod mtver processmod rmtmod servermod subrunmod testsmod ) (include "db_records.scm") (include "key_records.scm") ;;====================================================================== ;; ezsteps |
︙ | ︙ |
Modified megatest.scm from [ea5fd4faeb] to [97792d486c].
︙ | ︙ | |||
12 13 14 15 16 17 18 | ;; 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/>. ;; | < | 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | ;; 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/>. ;; (declare (uses dbi)) (declare (uses pkts)) (declare (uses stml2)) (declare (uses cookie)) (declare (uses csv-xml)) (declare (uses hostinfo)) |
︙ | ︙ | |||
114 115 116 117 118 119 120 | ;; local modules adjutant csv-xml ducttape-lib hostinfo mtver mutils | < | | | 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 | ;; local modules adjutant csv-xml ducttape-lib hostinfo mtver mutils cookie csv-xml ducttape-lib (prefix mtargs args:) pkts stml2 (prefix dbi dbi:) ;; apimod archivemod commonmod configfmod dbmod debugprint ezstepsmod http-transportmod launchmod processmod rmtmod runsmod servermod ;; tasksmod testsmod ) ;; fake out readline usage of toplevel-command (define (toplevel-command . a) #f) (define setenv set-environment-variable!) |
︙ | ︙ |