fixed macro-stepper tests
original commit: 97954f7c37f717cc4c3e826027069d5e5beb5d11
This commit is contained in:
parent
adf976fd4d
commit
b3dd6bfbae
|
@ -66,8 +66,12 @@
|
|||
(apply omnr args)]))
|
||||
|
||||
(define (rel+mod->mod rel mod)
|
||||
(define-values (base file dir?) (split-path (resolved-module-path-name rel)))
|
||||
(path->mod (simplify-path (build-path base mod))))
|
||||
(let* ([rel (resolved-module-path-name rel)]
|
||||
[rel (if (pair? rel) (car rel) rel)])
|
||||
(if (pair? mod)
|
||||
#f ;; give up on submodules for now; FIXME
|
||||
(let-values ([(base file dir?) (split-path rel)])
|
||||
(path->mod (simplify-path (build-path base mod)))))))
|
||||
|
||||
(define (path->mod path)
|
||||
(cond [(for/or ([c (current-library-collection-paths)]) (path->mod* path c))
|
||||
|
|
|
@ -38,7 +38,7 @@
|
|||
|
||||
;; Other racket/* forms
|
||||
(test-base scheme:match #f)
|
||||
(test-base scheme:unit #t)
|
||||
(test-base scheme:unit #f)
|
||||
(test-base scheme:class #f)
|
||||
|
||||
;; Unbound names
|
||||
|
|
Loading…
Reference in New Issue
Block a user