typed: fix deployment

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

View File

@ -112,4 +112,6 @@ os macosx? [
{ "a" "b" "c" } append
ascii [ lines ] with-process-reader
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
combinators.short-circuit definitions effects fry hints
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 ;
IN: typed