On Jun 23, 2016, at 11:15 AM, Alexandre Julliard julliard@winehq.org wrote:
diff --git a/dlls/msvcp120/tests/msvcp120.c b/dlls/msvcp120/tests/msvcp120.c index 7c94906..354b2d3 100644 --- a/dlls/msvcp120/tests/msvcp120.c +++ b/dlls/msvcp120/tests/msvcp120.c @@ -592,7 +592,7 @@ static void test_xtime_get(void) diff = p__Xtime_diff_to_millis2(&after, &before);
ok(diff >= tests[i],
"xtime_get() not functioning correctly, test: %d, expect: ge %d, got: %d\n",
}"xtime_get() not functioning correctly, test: %d, expect: %d, got: %d\n", i, tests[i], diff);
Too late on this one, but I think the "ge" was supposed to mean "greater than or equal to", given the actual test being performed. Probably best to replace it with ">=".
-Ken