Commit 973c2971 authored by Steven Edwards's avatar Steven Edwards Committed by Alexandre Julliard

quartz: Bump the amount of time in the referenceclock test slightly.

parent f59570db
......@@ -84,9 +84,9 @@ static void test_IReferenceClock_methods(const char * clockdesc, IReferenceClock
ok (hr == S_OK, "%s - Expected S_OK, got 0x%08x\n", clockdesc, hr);
/* FIXME: How much deviation should be allowed after a sleep? */
/* 0.3% is common, and 0.4% is sometimes observed. Let's try 0.6%. */
/* 0.3% is common, and 0.4% is sometimes observed. */
diff = time2 - time1;
ok (9940000 <= diff && diff <= 10060000, "%s - Expected difference around 10000000, got %lu\n", clockdesc, diff);
ok (9940000 <= diff && diff <= 10240000, "%s - Expected difference around 10000000, got %lu\n", clockdesc, diff);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment