build { core init lib/ld test/bomb timer } set timeout 60 set rounds 10 set generations 3 set children 7 set sleep 600 set demand [expr 1*1024*1024] set cpus 4 set init_ram 256 if { [get_cmd_switch --autopilot] } { if {[have_include "power_on/qemu"]} { puts "\nRun script does not support Qemu.\n" exit 0 } assert_spec nova # set specifically for our nightly test hardware */ if {[have_spec x86_64]} { set cpus 8 } set children 3 } create_boot_directory proc per_cpu_start_node { i } { global init_ram rounds generations children sleep demand return [join [list { }] ""] } proc cpu_start_nodes { cpus } { set result { } for { set i 0} { $i < $cpus } { incr i } { append result [per_cpu_start_node $i] } return $result } install_config { } [cpu_start_nodes $cpus] { } build_boot_image [build_artifacts] append qemu_args " -m [expr 128 + $init_ram*$cpus]M -nographic -smp $cpus" if { [get_cmd_switch --autopilot] } { run_genode_until {bomb started} 20 for { set i 0} { $i < ${cpus} } { incr i} { run_genode_until {\[init -\> init_[0-9] -\> bomb-master] Done\. Going to sleep} $timeout [output_spawn_id] } } else { run_genode_until forever }