fix a test for raco exe

The test failed for certain installation configurations due to a
problem with the test.
This commit is contained in:
Matthew Flatt 2014-07-18 10:54:18 +01:00
parent f9b20d3789
commit a881e24d43

View File

@ -425,7 +425,13 @@
(parameterize ([current-error-port (open-output-nowhere)]) (parameterize ([current-error-port (open-output-nowhere)])
(test #f system* (mk-dest mred?)))) (test #f system* (mk-dest mred?))))
(check-collection-path "embed-me6b.rkt" "racket/fixnum.rkt" #t) (check-collection-path "embed-me6b.rkt" "racket/fixnum.rkt" #t)
(check-collection-path "embed-me6.rkt" "mzlib/etc.rkt" #f) (check-collection-path "embed-me6.rkt" "mzlib/etc.rkt"
;; "mzlib" is found via the "collects" path
;; if it is accessible via the default
;; collection-links configuration:
(file-exists? (build-path
(find-collects-dir)
"../share/pkgs/compatibility-lib/mzlib/etc.rkt")))
(void))) (void)))