Fix benchmark.bootstrap2

db4
Slava Pestov 2008-01-30 02:46:52 -06:00
parent 9f90cf6263
commit c5bdf78d9a
1 changed files with 8 additions and 3 deletions

11
extra/benchmark/bootstrap2/bootstrap2.factor Normal file → Executable file
View File

@ -1,9 +1,14 @@
USING: tools.deploy.private io.files system
tools.deploy.backend ;
USING: io.files io.launcher system tools.deploy.backend
namespaces sequences kernel ;
IN: benchmark.bootstrap2
: bootstrap-benchmark
"." resource-path cd
vm { "-output-image=foo.image" "-no-user-init" } stage2 ;
[
vm ,
"-i=" boot-image-name append ,
"-output-image=foo.image" ,
"-no-user-init" ,
] { } make run-process drop ;
MAIN: bootstrap-benchmark