-
-
Notifications
You must be signed in to change notification settings - Fork 74
Fix cygwin tests #267
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix cygwin tests #267
Conversation
9291940 to
8f99a63
Compare
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## develop #267 +/- ##
===========================================
+ Coverage 95.76% 95.93% +0.17%
===========================================
Files 119 119
Lines 10331 10370 +39
===========================================
+ Hits 9893 9948 +55
+ Misses 438 422 -16
... and 12 files with indirect coverage changes Continue to review full report in Codecov by Sentry.
🚀 New features to boost your workflow:
|
f7aa74e to
75d231a
Compare
Avoid subsequent failure reports if the parsing already failed
They are supersets in that they replace unassigned ranges or control characters by valid symbols. This is slightly better than the fallback to the classic/C locale.
2b0d855 to
89a3ed8
Compare
a6d3c98 to
7651077
Compare
Handle that the same as for native Windows. Reason is an issue discovered converting an UTF-8 sequence of 1000x U+2008A to wchar_t (UTF-16): UTF-8: "\xF0\xA0\x82\x8A" The correct result are 1000x L"\xD840\xDC8A" The first 255 pairs are correct (1020 input bytes consumed) but the low surrogate of the 256th pair becomes `0xDC82` hinting it repeats the second last byte (index 1023) instead of reading the correct one.
08a0528 to
2690f0c
Compare
Improve tests so they pass on Appveyor Cygwin again