Unbreak stepper tests.
... via a spectacularly ugly hack.
This commit is contained in:
parent
90b586365f
commit
de94854243
|
@ -3,9 +3,12 @@
|
|||
(require "through-tests.ss"
|
||||
"test-engine.ss")
|
||||
|
||||
(parameterize ([display-only-errors #t]
|
||||
[current-output-port (open-output-string)]
|
||||
[current-namespace (make-base-namespace)])
|
||||
(if (run-all-tests-except '(bad-and bad-cons check-error begin-let-bug prims qq-splice time set! local-set! lazy1 lazy2 lazy3))
|
||||
(exit 0)
|
||||
(exit 1)))
|
||||
(let ((outer-namespace (current-namespace)))
|
||||
(parameterize ([display-only-errors #t]
|
||||
[current-output-port (open-output-string)]
|
||||
[current-namespace (make-base-namespace)])
|
||||
;; make sure the tests' print-convert sees the teaching languages' properties
|
||||
(namespace-attach-module outer-namespace 'mzlib/pconvert-prop (current-namespace))
|
||||
(if (run-all-tests-except '(bad-and bad-cons check-error begin-let-bug prims qq-splice time set! local-set! lazy1 lazy2 lazy3))
|
||||
(exit 0)
|
||||
(exit 1))))
|
||||
|
|
Loading…
Reference in New Issue
Block a user