toeb / googletest

Automatically exported from code.google.com/p/googletest
BSD 3-Clause "New" or "Revised" License
0 stars 0 forks source link

ASSERT_STRCASEEQ and ASSERT_STRCASENE macros should compare strings consistently across platforms #256

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Currently they use strcasecmp which is defined only for POSIX (or C) locale
in POSIX standard. We need consistent behavior across platforms to test for
internationalized code. strcoll might be appropriate to use.

Original issue reported on code.google.com by vladlosev on 30 Jun 2008 at 8:21