Overview
Comment: | Cherrypicked eeb358 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.65-newbuild |
Files: | files | file ages | folders |
SHA1: |
ccb3a67d618d21c66382528c2037edc7 |
User & Date: | mrwellan on 2020-05-27 16:18:14 |
Other Links: | branch diff | manifest | tags |
Context
2020-05-27
| ||
16:22 | Cherrypick of c7d908, c79779, ccab6 Closed-Leaf check-in: c76d156ddf user: mrwellan tags: v1.65-newbuild | |
16:18 | Cherrypicked eeb358 check-in: ccb3a67d61 user: mrwellan tags: v1.65-newbuild | |
16:15 | Cherrypicked e9a52 check-in: d7d7dab83f user: mrwellan tags: v1.65-newbuild | |
Changes
Modified common.scm from [2d53221a69] to [ab4de5a0a9].
︙ | |||
18 19 20 21 22 23 24 | 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | - + | ;;====================================================================== (use srfi-1 data-structures posix regex-case (prefix base64 base64:) format dot-locking csv-xml z3 udp ;; sql-de-lite hostinfo md5 message-digest typed-records directory-utils stack matchable regex posix (srfi 18) extras ;; tcp |
︙ |
Modified commonmod.scm from [79fa17743e] to [f09504d905].
︙ | |||
20 21 22 23 24 25 26 | 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | - + + | (declare (unit commonmod)) (module commonmod * (import scheme chicken data-structures extras files) |
︙ | |||
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 | 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 | + + + + + + + + + + | (define (get-testsuite-name toppath configdat) (or (lookup configdat "setup" "area-name") (lookup configdat "setup" "testsuite") (get-environment-variable "MT_TESTSUITE_NAME") (if (string? toppath) (pathname-file toppath) #f))) (define (get-area-path-signature toppath) (message-digest-string (md5-primitive) toppath)) (define (get-area-name toppath configdat) ;; look up my area name in areas table (future) ;; generate auto name (conc (get-area-path-signature toppath) "-" (get-testsuite-name toppath configdat))) ;; (define (debug:print . params) #f) ;; (define (debug:print-info . params) #f) ;; ;; (define (set-functions dbgp dbgpinfo) ;; (set! debug:print dbgp) ;; (set! debug:print-info dbgpinfo)) ) |