Overview
Comment: | Added ulex-dual and mtserve.scm |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v2.0001 |
Files: | files | file ages | folders |
SHA1: |
df862b5fff9e9e1afb5b88c7d80208c2 |
User & Date: | mrwellan on 2022-01-25 18:39:32 |
Other Links: | branch diff | manifest | tags |
Context
2022-01-26
| ||
14:45 | Separation of concerns; server is in mtserver and server stuff (will be) removed from megatest check-in: 7889ffe9e5 user: mrwellan tags: v2.0001 | |
2022-01-25
| ||
18:39 | Added ulex-dual and mtserve.scm check-in: df862b5fff user: mrwellan tags: v2.0001 | |
2022-01-20
| ||
18:31 | Remove dbmgrmod.scm as it is generated from a template. Added simple-excpetions to configf:std-imports check-in: 6697b4c75c user: mrwellan tags: v2.0001 | |
Changes
Modified Makefile from [54802c9b97] to [e7f3c30cb1].
︙ | |||
134 135 136 137 138 139 140 141 142 143 144 145 146 147 | 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 | + + + | ARCHSTR=$(shell if [[ -e /usr/bin/sw_vers ]]; then /usr/bin/sw_vers -productVersion; else lsb_release -sr; fi) # ARCHSTR=$(shell bash -c "echo \$$MACHTYPE") PNGFILES = $(shell cd docs/manual;ls *png) mtest: megatest.scm $(MOFILES) megatest-fossil-hash.scm csc $(CSCOPTS) $(MOFILES) megatest.scm -o mtest mtserve: mtserve.scm $(MOFILES) megatest-fossil-hash.scm csc $(CSCOPTS) $(MOFILES) mtserve.scm -o mtserve # $(MOIMPFILES) removed showmtesthash: @echo $(MTESTHASH) dboard : dashboard.scm $(MOFILES) $(GMOFILES) megatest-fossil-hash.scm |
︙ |
Modified dbmod.scm from [a59a7c6f2f] to [351701514f].
︙ | |||
1940 1941 1942 1943 1944 1945 1946 | 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 | + - + - + - - + - | (null? toplevels)) #f #t))))) (define (db:get-status-from-final-status-file run-dir) (let ((infile (conc run-dir "/.final-status"))) ;; first verify we are able to write the output file (if (and (file-exists? infile) |
︙ |
Added mtserve.scm version [7f7ba83fa1].