# # Build # # # Wether the platform allows for timeouts that trigger with a precision < 50 milliseconds # proc precise_timeouts { } { # # On QEMU, NOVA uses the pretty unstable TSC emulation as primary time source. # if {[have_include "power_on/qemu"] && [have_spec nova]} { return false } return true } # # Wether the platform allows for a timestamp that has a precision < 1 millisecond # proc precise_time { } { # # On QEMU, timing is not stable enough for microseconds precision # if {[have_include "power_on/qemu"]} { return false } # # On ARM, we do not have a component-local time source in hardware. The ARM # performance counter has no reliable frequency as the ARM idle command # halts the counter. Thus, we do not use local time interpolation on ARM. # Except we're on the HW kernel. In this case we can read out the kernel # time instead. # if {[expr [have_spec arm] && ![have_spec hw]]} { return false } return true } build "core init drivers/platform drivers/timer test/timeout test/cpufreq" # # Boot image # create_boot_directory append config { } install_config $config build_boot_image "core ld.lib.so init timer test-timeout" # # Execution # append qemu_args "-nographic " run_genode_until "child \"test\" exited with exit value.*\n" 900 grep_output {\[init\] child "test" exited with exit value} compare_output_to {[init] child "test" exited with exit value 0}