msvcrt:locale Properly fix setlocale and clean up tests

Alexandre Julliard julliard at winehq.org
Mon Aug 30 05:47:28 CDT 2010


GOUJON Alexandre <ale.goujon at gmail.com> writes:

> On 08/30/2010 11:21 AM, Alexandre Julliard wrote:
>> Now you are overdoing it. I said to remove broken() for minor spelling
>> differences, not for everything. For instance confusing 936 and 950
>> codepages for Chinese is broken, it's not just a spelling difference
> Sorry, I'm trying to do my best but
>> Not all of them, but those that don't make sense
> was too vague so I considered the following as a rule
>> are both OK since they both appear on Windows
> (appeared on window = ok() )

The whole point of broken() is for things that appear on Windows but are
not considered valid.

> So, just to be clear
>
> -        todo_wine ok(!strcmp(ret, "Chinese (Simplified)_People's Republic of China.936")
> -        || broken(!strcmp(ret, "Chinese_People's Republic of China.936"))
> -        || broken(!strcmp(ret, "Chinese_Taiwan.950")), "ret = %s\n", ret);
> +        ok(!strcmp(ret, "Chinese (Simplified)_People's Republic of China.936")
> +        || !strcmp(ret, "Chinese_People's Republic of China.936")
> +        || broken(!strcmp(ret, "Chinese_Taiwan.950")), "ret = %s\n", ret);
> is correct

Yes.

> And what about not returned strings e.g.
>
> -        ok(!strcmp(ret, "English_New Zealand.1252")
> -        || broken(!strcmp(ret, "English_United States.1252")), "ret = %s\n", ret);
> +        ok(!strcmp(ret, "English_New Zealand.1252"), "ret = %s\n", ret);
>
> Should I keep them ? (in this case, transform the broken() in ok() )
> Or delete them as I did ?

You can't delete them since they appear on Windows (otherwise they
wouldn't be marked as broken). And clearly "New Zealand" is not a
different spelling of "United States" ;-) so it should remain broken.

-- 
Alexandre Julliard
julliard at winehq.org



More information about the wine-devel mailing list