Changes In Branch v1.80-debugprint Excluding Merge-Ins
This is equivalent to a diff from 34c5263e66 to 5c56271302
2023-02-22
| ||
11:12 | Merged tcp-inmem check-in: 47a4f89869 user: mrwellan tags: v1.80 | |
2023-02-13
| ||
04:56 | missing param setting Leaf check-in: 5c56271302 user: matt tags: v1.80-debugprint | |
2023-02-12
| ||
10:52 | wip - start tcp/inmem check-in: 1a2eb25cb6 user: matt tags: v1.80-tcp-inmem | |
2023-02-10
| ||
21:22 | rebased v1.80-debugprint forward check-in: 9d2772b077 user: matt tags: v1.80-debugprint | |
21:16 | Merge v1.80-cleanup as it passed QA check-in: 34c5263e66 user: matt tags: v1.80 | |
21:06 | Merging pretty good branch v1.80-dbperf to v1.80 check-in: 7170e5f43b user: matt tags: v1.80 | |
2023-02-05
| ||
11:47 | Minor clean up. There were a couple communication errors in sixtyfivek but they looked likely to be host related. Closed-Leaf check-in: e973b1fb77 user: matt tags: v1.80-cleanup | |
Modified dashboard.scm from [4ad343f07e] to [2a55359814].
︙ | |||
13 14 15 16 17 18 19 20 21 22 23 24 25 26 | 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | + + + + | ;; 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 debugprint)) (import debugprint) (use format) (require-library iup) (import (prefix iup iup:)) (use canvas-draw) |
︙ |
Modified dbfile.scm from [e35890c342] to [3466867c35].
︙ | |||
15 16 17 18 19 20 21 | 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | - + | ;; ;; You should have received a copy of the GNU General Public License ;; along with Megatest. If not, see <http://www.gnu.org/licenses/>. ;;====================================================================== (declare (unit dbfile)) |
︙ | |||
38 39 40 41 42 43 44 | 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | - + + | files ports commonmod ;; debugprint ) |
︙ | |||
333 334 335 336 337 338 339 | 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 | + - - - - + + + + | (with-output-to-port (current-error-port) (lambda () (apply print params))) (exit 1)) (define (dbfile:print-err . params) (apply debug:print 0 *default-log-port* params)) |
︙ |
Modified debugprint.scm from [54f7083883] to [993bf82387].
|
Modified megatest.scm from [79d9696058] to [a2b02168c4].
︙ | |||
43 44 45 46 47 48 49 | 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | - - - - + + + + | (declare (uses env)) (declare (uses diff-report)) (declare (uses db)) (declare (uses dbmod)) (declare (uses dbmod.import)) (declare (uses commonmod)) (declare (uses commonmod.import)) |
︙ |
Modified mtargs.scm from [1e6b59e54f] to [bf4593d143].
︙ | |||
15 16 17 18 19 20 21 | 15 16 17 18 19 20 21 22 23 | - + | ;; ;; You should have received a copy of the GNU General Public License ;; along with Megatest. If not, see <http://www.gnu.org/licenses/>. ;;====================================================================== (declare (unit mtargs)) |