Don't run tar/zip tests if the executables are not found.
This commit is contained in:
parent
a1f76598bb
commit
0b0aa72ba0
|
@ -165,8 +165,8 @@
|
|||
(test do (tester))))
|
||||
cleanup))
|
||||
|
||||
(define (untar-tests) (test do (run-tests untar-tests*)))
|
||||
(define (unzip-tests) (test do (run-tests unzip-tests*)))
|
||||
(define (untar-tests) (when tar-exe (test do (run-tests untar-tests*))))
|
||||
(define (unzip-tests) (when zip-exe (test do (run-tests unzip-tests*))))
|
||||
|
||||
(module+ main (tests))
|
||||
(define (tests)
|
||||
|
|
Loading…
Reference in New Issue
Block a user