adjust a syncheck test so hopefully to avoid mutating datastructures from the wrong thread

This commit is contained in:
Robby Findler 2011-09-20 10:40:17 -05:00
parent 6e6e30a73a
commit 5ce47fe988

View File

@ -10,9 +10,11 @@
(let ([drs (wait-for-drscheme-frame)])
(set-module-language!)
(do-execute drs)
(queue-callback/res (λ () (handler:edit-file (collection-file-path "map.rkt" "racket" "private"))))
(queue-callback/res
(λ ()
(preferences:set 'framework:coloring-active #f)
(handler:edit-file (collection-file-path "map.rkt" "racket" "private"))))
(preferences:set 'framework:coloring-active #f)
(click-check-syntax-and-check-errors drs "syncheck-eval-compile-time.rkt")))))