2008-01-30 03:46:52 -05:00
|
|
|
USING: io.files io.launcher system tools.deploy.backend
|
|
|
|
namespaces sequences kernel ;
|
2007-09-20 18:09:08 -04:00
|
|
|
IN: benchmark.bootstrap2
|
|
|
|
|
|
|
|
: bootstrap-benchmark
|
|
|
|
"." resource-path cd
|
2008-01-30 03:46:52 -05:00
|
|
|
[
|
|
|
|
vm ,
|
|
|
|
"-i=" boot-image-name append ,
|
|
|
|
"-output-image=foo.image" ,
|
|
|
|
"-no-user-init" ,
|
|
|
|
] { } make run-process drop ;
|
2007-09-20 18:09:08 -04:00
|
|
|
|
|
|
|
MAIN: bootstrap-benchmark
|