new support file for make-executable tests

svn: r3392

original commit: 8d3d7b10d3
This commit is contained in:
Matthew Flatt 2006-06-18 02:00:13 +00:00
parent 0f76b637db
commit 7af0ccb668

View File

@ -0,0 +1,8 @@
(module embed-me6 mzscheme
(with-output-to-file "stdout"
(lambda ()
(printf "This is 6\n")
(with-handlers ([void (lambda (exn) (printf "no etc.ss\n"))])
(printf "~a\n" (dynamic-require '(lib "etc.ss") 'true))))
'append))