Overview
Comment: | added serialize-env.scm |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.65-testpanel-execenv |
Files: | files | file ages | folders |
SHA1: |
934132ed7c6b885d00911062f5e0d2ca |
User & Date: | bjbarcla on 2018-12-05 13:33:12 |
Other Links: | branch diff | manifest | tags |
Context
2018-12-05
| ||
15:21 | fixed color of steps matrix when val is - Leaf check-in: 71d89918c0 user: bjbarcla tags: v1.65-testpanel-execenv | |
13:33 | added serialize-env.scm check-in: 934132ed7c user: bjbarcla tags: v1.65-testpanel-execenv | |
2018-12-04
| ||
18:19 | implemented second level of env var squelching by capturing orig env in variable MT_ORIG_ENV in cfg.sh wrapper so it is inherited by nested dashboard call for test control panel. check-in: edcc532c16 user: bjbarcla tags: v1.65-testpanel-execenv | |
Changes
Added serialize-env.scm version [e0a42785e8].
> > > > > > > > > | 1 2 3 4 5 6 7 8 9 | (use z3) (use base64) (let* ((env-str (with-output-to-string (lambda () (pp (get-environment-variables))))) (zipped-env-str (z3:encode-buffer env-str)) (b64-env-str (base64-encode zipped-env-str))) (print b64-env-str)) |