-
-
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
file test failure on freebsd10 #8078
Comments
Could you perhaps change the tests to output the values of the variables being tested for equality? Perhaps |
It might be a libuv issue -- |
I also get this issue on FreeBSD 10.2. Build works fine, but the tests fail on the file test, because there isn't a filename returned.
|
I trace the code on libuv: https://github.com/libuv/libuv/blob/309d603382159eacdf52cbf0fa936deb60552d32/src/unix/kqueue.c#L353-L361 |
close JuliaLang#8078 On FreeBSD, the F_GETPATH is not available in fcntl. The path returned by libuv will be NULL. Ref: https://github.com/libuv/libuv/blob/309d603382159eacdf52cbf0fa936deb60552d32/src/unix/kqueue.c#L353-L361 And the test case in libuv: https://github.com/libuv/libuv/blob/309d603382159eacdf52cbf0fa936deb60552d32/test/test-fs-event.c#L315-L318
close JuliaLang#8078 On FreeBSD, the F_GETPATH is not available in fcntl. The path returned by libuv will be NULL. Ref: https://github.com/libuv/libuv/blob/309d603382159eacdf52cbf0fa936deb60552d32/src/unix/kqueue.c#L353-L361 And the test case in libuv: https://github.com/libuv/libuv/blob/309d603382159eacdf52cbf0fa936deb60552d32/test/test-fs-event.c#L315-L318
The text was updated successfully, but these errors were encountered: