Overview
Comment: | Added check of disks section |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.65-newview |
Files: | files | file ages | folders |
SHA1: |
2c22506f667e6c675af6256a6bcc5bf3 |
User & Date: | matt on 2020-04-10 00:06:24 |
Other Links: | branch diff | manifest | tags |
Context
2020-04-10
| ||
10:58 | Added linktree check check-in: b82fdf714f user: mrwellan tags: v1.65-newview | |
00:06 | Added check of disks section check-in: 2c22506f66 user: matt tags: v1.65-newview | |
2020-04-09
| ||
22:44 | Improved syscheck check-in: 03755c29bf user: matt tags: v1.65-newview | |
Changes
Modified megatest.scm from [dc26c13c4e] to [79dae659e5].
︙ | |||
2365 2366 2367 2368 2369 2370 2371 | 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 | - + + + | (if (tests:create-html-summary #f) (debug:print-info 0 *default-log-port* "HTML output created in " toppath "/lt/targets.html") (debug:print 0 *default-log-port* "Failed to create HTML output in " toppath "/lt/runs-index.html")) (set! *didsomething* #t))) (if (args:get-arg "-syscheck") (begin |
︙ |
Modified mutils/mutils.scm from [88ee953daf] to [ce6bb4c4f6].
︙ | |||
20 21 22 23 24 25 26 27 28 29 30 31 32 33 | 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | + | ;; srfi-13 srfi-69 ports extras regex posix data-structures matchable ) (define (mutils:hierhash-ref hh . keys) (if (null? keys) #f (let loop ((ht hh) (key (car keys)) |
︙ | |||
199 200 201 202 203 204 205 | 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 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 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 | + + + + + + + + - + + + + + - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + | (begin (with-output-to-file fname (lambda () (print "You can delete this file"))) (delete-file fname) #t))))) (define (run-and-return-output cmd . params) (let-values (((inp oup pid) (process cmd params))) (let ((res (with-input-from-port inp read-lines))) (let-values (((pidres status estatus) (process-wait pid))) (and status (eq? estatus 0) res))))) |