adding compile-context-preservation-enabled so we get the same results of compilation in both racket and drracket tests

This commit is contained in:
Danny Yoo 2011-05-17 15:52:45 -04:00
parent 2f90e68db1
commit fd7fff2c58
2 changed files with 13 additions and 1 deletions

8
Makefile Normal file
View File

@ -0,0 +1,8 @@
test-compiler:
raco make -v --disable-inline test-compiler.rkt
racket test-compiler.rkt
test-earley:
raco make -v --disable-inline test-earley.rkt
racket test-earley.rkt

View File

@ -19,7 +19,11 @@
(define (parse stx)
(parameterize ([current-namespace (lookup-language-namespace
`(file ,(path->string kernel-language-path))
#;'racket/base)])
#;'racket/base)]
;; We want to disable some optimizations for the moment.
;; See: http://docs.racket-lang.org/drracket/module.html
[compile-context-preservation-enabled #t])
(let ([bc (racket:compile stx)]
[op (open-output-bytes)])
(write bc op)