Overview
Comment: | wip |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.80-revolution-remodularization |
Files: | files | file ages | folders |
SHA1: |
4e4e866f24a2ebad2edbf38cb9ad804c |
User & Date: | mrwellan on 2024-02-02 07:15:26 |
Other Links: | branch diff | manifest | tags |
Context
2024-02-05
| ||
11:43 | Merged fork check-in: 7ecfa2b7e3 user: mrwellan tags: v1.80-revolution-remodularization | |
2024-02-02
| ||
07:15 | wip check-in: 4e4e866f24 user: mrwellan tags: v1.80-revolution-remodularization | |
2024-02-01
| ||
21:13 | More munging for remodularization check-in: ab8f9725fd user: matt tags: v1.80-revolution-remodularization | |
Changes
Modified megatestmod.scm from [50b6929265] to [078a4cbfe7].
︙ | ︙ | |||
39 40 41 42 43 44 45 | (import scheme) (cond-expand (chicken-4 (import chicken ports | < < < < < < < < < < < < < < < < > > > > > > > > > > > > > > > > > | 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 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 | (import scheme) (cond-expand (chicken-4 (import chicken ports data-structures extras files matchable md5 message-digest pathname-expand posix posix-extras regex regex-case sparse-vectors srfi-1 srfi-18 srfi-69 typed-records z3 ) (use srfi-69)) (chicken-5 (import (prefix sqlite3 sqlite3:) chicken.base chicken.condition chicken.file chicken.file.posix chicken.io chicken.pathname chicken.port chicken.process chicken.process-context chicken.process-context.posix chicken.sort chicken.string chicken.time chicken.time.posix matchable md5 message-digest pathname-expand system-information debugprint ))) (import regex regex-case srfi-1 srfi-18 srfi-69 typed-records debugprint (prefix mtargs args:) (prefix base64 base64:) (prefix sqlite3 sqlite3:) dbmod dbfile commonmod mtmod ) ;;====================================================================== ;; '(print (string-intersperse (map cadr (hash-table-ref/default (read-config "megatest.config" \#f \#t) "disks" '"'"'("none" ""))) "\n"))' (define (common:get-disks #!key (configf #f)) (hash-table-ref/default (or configf (read-config "megatest.config" #f #t)) "disks" '("none" ""))) |
︙ | ︙ |