* [PATCH] [KVM-Unit-Tests] Add summary to kvmclock test
@ 2010-09-07 23:38 Amos Kong
0 siblings, 0 replies; only message in thread
From: Amos Kong @ 2010-09-07 23:38 UTC (permalink / raw)
To: avi; +Cc: jasowang, kvm
This summary would be helpful when analyze test log
Signed-off-by: Amos Kong <akong@redhat.com>
---
0 files changed, 0 insertions(+), 0 deletions(-)
diff --git a/x86/kvmclock_test.c b/x86/kvmclock_test.c
index 5b14ae2..97fe6b3 100644
--- a/x86/kvmclock_test.c
+++ b/x86/kvmclock_test.c
@@ -19,12 +19,15 @@ struct test_info {
};
struct test_info ti[4];
+static int ntests;
static int wallclock_test(long sec, long threshold)
{
long ksec, offset;
struct timespec ts;
+ ++ntests;
+
printf("Wallclock test, threshold %ld\n", threshold);
kvm_get_wallclock(&ts);
ksec = ts.tv_sec;
@@ -87,6 +90,8 @@ static int cycle_test(int ncpus, long loops, int check, struct test_info *ti)
int i;
unsigned long long begin, end;
+ ++ntests;
+
begin = rdtsc();
atomic_set(&ti->ncpus, ncpus);
@@ -162,5 +167,6 @@ int main(int ac, char **av)
for (i = 0; i < ncpus; ++i)
on_cpu(i, kvm_clock_clear, (void *)0);
+ printf("\nsummary: %d tests, %d failures\n", ntests, nerr);
return nerr > 0 ? 1 : 0;
}
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2010-09-07 23:38 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-09-07 23:38 [PATCH] [KVM-Unit-Tests] Add summary to kvmclock test Amos Kong
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox