input_filter.run: no char-repeat test using PIT

The legacy PIT timer driver is too jittery for the character-repeat
test. This patch disables the test for platforms using this device as
user-level time source, which are at the moment OKL4, Pistachio, and
seL4.
This commit is contained in:
Norman Feske 2018-06-28 10:45:58 +02:00
parent 5fe0e3d5fb
commit d068eaa9f7
1 changed files with 4 additions and 0 deletions

View File

@ -4,6 +4,10 @@ proc test_char_repeat { } {
# Qemu
if {[have_include "power_on/qemu"]} { return 0 }
# the legacy PIT timer driver is too inaccurate to produce stable results
# for the character-repeat test
if {[binary_name_timer] == "pit_timer_drv"} { return 0 }
return 1
}