# # \brief Test ping # \author Josef Soentgen # \date 2013-01-06 # # # Client parameters # set packet_payload_size 10 set packet_count 1000000 if {[have_spec hw_odroid_xu]} { puts "Run script does not support this platform." exit 0 } # # Build # set build_components { core init drivers/timer drivers/nic test/lwip/pingpong/server } lappend_if $use_nic_bridge build_components server/nic_bridge lappend_if [expr [have_spec omap4] || [have_spec platform_arndale]] build_components drivers/platform lappend_if [expr [have_spec omap4] || [have_spec platform_arndale]] build_components drivers/usb lappend_if [have_spec acpi] build_components drivers/acpi lappend_if [have_spec pci] build_components drivers/pci/device_pd lappend_if [have_spec pci] build_components drivers/pci build $build_components create_boot_directory # # Generate config # set config { } append_if $use_nic_bridge config { } append_if [expr $use_nic_bridge && ([have_spec omap4] || [have_spec platform_arndale])] config { } append_if [expr $use_nic_bridge && (![have_spec omap4] && ![have_spec platform_arndale])] config { } append_if $use_nic_bridge config { } append config " " append config { } append_if $use_nic_bridge config { } append config { } append_if [have_spec platform_arndale] config { } append_if [expr [have_spec omap4] || [have_spec platform_arndale]] config { } append_if [expr ![have_spec omap4] && ![have_spec platform_arndale]] config { } append_if [have_spec acpi] config { } append_if [expr ![have_spec acpi] && [have_spec pci]] config { } append config { } install_config $config # # Boot modules # # generic modules set boot_modules { core init timer ld.lib.so libc.lib.so lwip.lib.so } lappend_if $use_nic_bridge boot_modules nic_bridge lappend boot_modules $test_server_name # platform-specific modules lappend_if [have_spec pci] boot_modules pci_drv lappend_if [have_spec acpi] boot_modules acpi_drv lappend_if [expr [have_spec omap4] || [have_spec platform_arndale]] boot_modules usb_drv lappend_if [expr ![have_spec omap4] && ![have_spec platform_arndale]] boot_modules nic_drv lappend_if [have_spec nova] boot_modules pci_device_pd lappend_if [have_spec platform_arndale] boot_modules platform_drv build_boot_image $boot_modules # get IP address from server set match_string "got IP address (.*)\033.*\n" run_genode_until $match_string 30 set server_spawn_id $spawn_id regexp $match_string $output all ip_addr puts "got server IP address: $ip_addr" set match_string "wait....*\n" if {![regexp $match_string $output] } { # wait until the server is ready run_genode_until $match_string 30 $server_spawn_id } # build the client set pingpong_dir $genode_dir/repos/libports/src/test/lwip/pingpong exec g++ -o bin/network_test_client \ $pingpong_dir/client/main.cc \ $pingpong_dir/pingpong.cc \ -I $pingpong_dir # start the client spawn bin/network_test_client \ -serverip $ip_addr \ -startsize $packet_payload_size \ -endsize $packet_payload_size \ -count $packet_count # wait until the client is connected to the server run_genode_until "client \[1|3\] connected..." 60 $server_spawn_id # start counting the execution time set time_start [clock milliseconds] # wait until the server received all packets run_genode_until "received .*\n" 600 $server_spawn_id # stop counting the execution time set time_end [clock milliseconds] # get received packet size and count from target set target_packet_size [regexp -inline {received [0-9]+ packets of size [0-9]+} $output] set target_packet_size [regexp -all -inline {[0-9]+} $target_packet_size] set target_packet_count [lindex $target_packet_size 0] set target_packet_size [lindex $target_packet_size 1] # calculate troughput set milliseconds [expr $time_end - $time_start] set payload_total [expr $target_packet_count * $target_packet_size] set payload_bytes_per_second [expr $payload_total * 1000 / $milliseconds ] puts "! PERF: $target_packet_size\_data [expr $payload_bytes_per_second * 8 / 1000 / 1000] MBit/s ok" set test_result "$milliseconds ms. payload ($target_packet_size Byte): $payload_bytes_per_second Byte/s" puts "\nTest succeeded in $test_result." # disconnect from server system if {[expr [have_spec omap4] || [have_spec platform_arndale]]} { send -i $server_spawn_id "\x01\x18" ;# Ctrl-A Ctrl-X } exec rm -f bin/network_test_client # vi: set ft=tcl :