[functional-tests] use the tools in bin, rather than those installed on

the system.
This commit is contained in:
Joe Thornber 2017-10-10 11:37:32 +01:00
parent 6bf81aab85
commit 3a8c42e2d9

View File

@ -190,7 +190,11 @@
(define (to-underscore c)
(if (eq? #\- c) #\_ c))
(list->string (map to-underscore (string->list (symbol->string sym)))))
(string-append "../bin/"
(list->string
(map to-underscore
(string->list
(symbol->string sym))))))
(define-syntax define-tool
(syntax-rules ()