typed: fix deployment

Slava Pestov 2009-10-16 21:22:01 -05:00
parent 4c279d7493
commit ad2e17019f
4 changed files with 26 additions and 2 deletions

View File

@ -113,3 +113,5 @@ os macosx? [
ascii [ lines ] with-process-reader ascii [ lines ] with-process-reader
rest rest
] unit-test ] unit-test
[ ] [ "tools.deploy.test.16" shake-and-bake run-temp-image ] unit-test

View File

@ -0,0 +1,8 @@
IN: tools.deploy.test.16
USING: typed sequences math strings io ;
TYPED: typed-test ( x: integer y: string -- ) <repetition> concat print ;
: typed-main ( -- ) 3 "hi" typed-test ;
MAIN: typed-main

View File

@ -0,0 +1,14 @@
USING: tools.deploy.config ;
H{
{ deploy-name "tools.deploy.test.16" }
{ deploy-ui? f }
{ deploy-c-types? f }
{ deploy-unicode? f }
{ deploy-io 2 }
{ deploy-reflection 1 }
{ "stop-after-last-window?" t }
{ deploy-word-props? f }
{ deploy-math? f }
{ deploy-threads? f }
{ deploy-word-defs? f }
}

View File

@ -2,7 +2,7 @@
USING: accessors arrays classes classes.tuple combinators USING: accessors arrays classes classes.tuple combinators
combinators.short-circuit definitions effects fry hints combinators.short-circuit definitions effects fry hints
math kernel kernel.private namespaces parser quotations math kernel kernel.private namespaces parser quotations
see.private sequences slots words locals locals.definitions see see.private sequences slots words locals locals.definitions
locals.parser macros stack-checker.state ; locals.parser macros stack-checker.state ;
IN: typed IN: typed