Overview
Comment: | Merged in some edits made on v1.55 branch |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | dev |
Files: | files | file ages | folders |
SHA1: |
432258c6c994aad3ce6f008b47a4be16 |
User & Date: | matt on 2013-07-18 23:37:31 |
Other Links: | branch diff | manifest | tags |
Context
2013-07-18
| ||
23:54 | Fixed reversing order bug with sheets in refdb check-in: 1e51940e3d user: matt tags: dev | |
23:37 | Merged in some edits made on v1.55 branch check-in: 432258c6c9 user: matt tags: dev | |
23:33 | Added roadmap, enabled -logging, switched to exec in wrapper scripts check-in: 90d533fb56 user: mrwellan tags: v1.55 | |
2013-07-17
| ||
01:17 | Updated training presentation. check-in: 20a7425b22 user: matt tags: dev | |
Changes
Modified Makefile from [9930e702df] to [705f91c9d9].
︙ | |||
136 137 138 139 140 141 142 | 136 137 138 139 140 141 142 143 | - + | bin : mkdir -p $(PREFIX)/bin test: tests/tests.scm cd tests;csi -I .. -b -n tests.scm clean : |
Modified common_records.scm from [9ac4a598ab] to [7793eb36cc].
︙ | |||
47 48 49 50 51 52 53 | 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 | + + - - + + - - - + + + + + | (conc *verbosity*)))))) (define (debug:print n . params) (if (debug:debug-mode n) (with-output-to-port (current-error-port) (lambda () (if *logging* (db:log-event (apply conc params)) |
Modified db.scm from [56b35aaf08] to [383d15bff3].
︙ | |||
357 358 359 360 361 362 363 | 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 | - - - - - + + + + + - + - + + + + + | (if (not dbexists) (begin (sqlite3:execute db "CREATE TABLE IF NOT EXISTS log (id INTEGER PRIMARY KEY,event_time TIMESTAMP DEFAULT (strftime('%s','now')),logline TEXT,pwd TEXT,cmdline TEXT,pid INTEGER);") (sqlite3:execute db (conc "PRAGMA synchronous = 0;")))) db)) (define (db:log-local-event . loglst) |
︙ |
Modified docs/plan.txt from [b6f3c7c220] to [d2b75369f4].
|
Modified megatest-version.scm from [431e4dfd76] to [52c3305228].
1 2 3 4 5 | 1 2 3 4 5 6 7 | - + | ;; Always use two digit decimal ;; 1.01, 1.02...1.10,1.11 ... 1.99,2.00.. (declare (unit megatest-version)) |
Modified runs.scm from [0d3fdcfce8] to [6ee79e71cd].
︙ | |||
646 647 648 649 650 651 652 | 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 | + + + + + + + - + - | (debug:print-info 4 "OUTER COND: (and (list? items)(not itemdat))") ;; Must determine if the items list is valid. Discard the test if it is not. (if (and (list? items) (> (length items) 0) (and (list? (car items)) (> (length (car items)) 0)) (debug:debug-mode 1)) (debug:print 2 (map (lambda (row) (conc (string-intersperse (map (lambda (varval) (string-intersperse varval "=")) row) " ") "\n")) |
︙ |
Modified utils/mk_wrapper from [abe9806348] to [8168084a10].
1 2 3 4 5 6 7 8 9 10 11 12 13 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | - + | #!/bin/bash prefix=$1 cmd=$2 echo "#!/bin/bash" if [ "$LD_LIBRARY_PATH" != "" ];then echo "INFO: Using LD_LIBRARY_PATH=$LD_LIBRARY_PATH" >&2 echo "export LD_LIBRARY_PATH=$LD_LIBRARY_PATH" else echo "INFO: LD_LIBRARY_PATH not set" >&2 fi |