Andrey Gusev : msvcp120/tests: Fix a typo in ok() message.

Ken Thomases ken at codeweavers.com
Thu Jun 23 14:14:30 CDT 2016


On Jun 23, 2016, at 11:15 AM, Alexandre Julliard <julliard at 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




More information about the wine-devel mailing list