From a881e24d4319edc7bb670795fa69d9992df397af Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Fri, 18 Jul 2014 10:54:18 +0100 Subject: [PATCH] fix a test for `raco exe` The test failed for certain installation configurations due to a problem with the test. --- .../compiler-test/tests/compiler/embed/test.rkt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/pkgs/compiler-pkgs/compiler-test/tests/compiler/embed/test.rkt b/pkgs/compiler-pkgs/compiler-test/tests/compiler/embed/test.rkt index 4e2e6d59f1..62afaaffea 100644 --- a/pkgs/compiler-pkgs/compiler-test/tests/compiler/embed/test.rkt +++ b/pkgs/compiler-pkgs/compiler-test/tests/compiler/embed/test.rkt @@ -425,7 +425,13 @@ (parameterize ([current-error-port (open-output-nowhere)]) (test #f system* (mk-dest mred?)))) (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)))