-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
investigate swprintf call failure (#37735) #37912
Conversation
That's odd:
|
Hm, apparently this might be a known bug in FreeBSD (that %ls doesn't follow the posix spec)? https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=114578 |
FWIW, it appears that tabularasa_freebsd-x86_64-openstack_2 has always failed, and tabularasa_freebsd-x86_64-openstack_3 has always succeeded at this test, so I suspect a configuration issue compounded by that FreeBSD bug. (this current CI run will hopefully help clarify that) https://build.julialang.org/#/builders/33/builds/4490 says we have on the broken bot:
and on the working bot:
|
It appears that the macOS libc also inherited the same issue from BSD:
|
Ah, sometimes it seems you just can't win. Looks like the tabularasa_linux-x86_64-nanosoldier2_1 has utf-8 support disabled?? and thus the warning message I added for that situation then causes some of the tests to fail. |
4c8304f
to
c7ee448
Compare
Some basic functionality in libc (such as printf) might be broken if the string encoding is not matching our Cstring expectations.
No description provided.