Overview
Comment: | Progress snapshot |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | run-mgr |
Files: | files | file ages | folders |
SHA1: |
00aca6f09e92fa4c5c1ab48c0fd0f7f0 |
User & Date: | matt on 2017-02-12 14:32:45 |
Other Links: | branch diff | manifest | tags |
Context
2017-02-12
| ||
20:33 | Parts of command line coming together check-in: f8ecc58db2 user: matt tags: run-mgr | |
14:32 | Progress snapshot check-in: 00aca6f09e user: matt tags: run-mgr | |
11:48 | Split sensing out to new config file rungen.config check-in: 83aea4b059 user: matt tags: run-mgr | |
Changes
Modified megatest.config from [b40ed6ff61] to [5f36d3b956].
1 2 3 4 | 1 2 3 4 5 6 7 8 9 10 11 12 | + - + | [setup] pktsdirs /tmp/pkts /some/other/source [areas] # path-to-area map-target-script(optional) |
Modified mtut.scm from [5bb4365b55] to [95c6d56ac6].
︙ | |||
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 | 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 | + + + | ("-manual" . #f) ("-version" . #f) ;; misc ("-repl" . #f) ("-immediate" . I) )) ;; Card types: ;; ;; a action ;; u username (Unix) ;; D timestamp ;; T card type ;; process args (define *action* (if (> (length (argv)) 1) (cadr (argv)) #f)) (define remargs (args:get-args (if *action* (cdr (argv)) (argv)) ;; args:get-args dumps first in argv list (the program name) |
︙ | |||
165 166 167 168 169 170 171 | 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 | - + - + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + - | (args:get-arg "-envcap") (args:get-arg "-envdelta") ) )) (debug:print-error 0 *default-log-port* "Unrecognised arguments: " (string-intersperse (if (list? remargs) remargs (argv)) " "))) ;;====================================================================== |
︙ | |||
268 269 270 271 272 273 274 | 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 | - + + - + + + + + + + + + + + | (with-output-to-file (conc pktsdir "/" uuid ".pkt") (lambda () (print pkt))) (print "ERROR: cannot process commands without a pkts directory"))))) ((process import rungen) (let* ((mtconfdat (simple-setup (args:get-arg "-start-dir"))) |
︙ |