Disable timer response upper bound check

The arm test_cval_10msec test checks both the lower and upper bound of
how much time elapsed before a timer fired. With the thread pressure of
our test rig, we often miss that window, making the test flaky.

Signed-off-by: David Brazdil <dbrazdil@google.com>
Change-Id: I5a1a89d38b2ca8ef605a7ba3745d4b698a59a8eb
diff --git a/arm/timer.c b/arm/timer.c
index 09e3f8f..47ec7a5 100644
--- a/arm/timer.c
+++ b/arm/timer.c
@@ -223,7 +223,8 @@
 		printf("ISTATUS set too early\n");
 		return false;
 	}
-	return difference < time_10ms;
+	// pKVM: Do not check upper bound, flaky on QEMU.
+	return true; // difference < time_10ms;
 }
 
 static void test_timer(struct timer_info *info)