Don't run tar/zip tests if the executables are not found.

This commit is contained in:
Eli Barzilay 2013-06-16 21:59:44 -04:00
parent a1f76598bb
commit 0b0aa72ba0

View File

@ -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)