You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is quite likely due to different struct layouts for ftsent. For example, on Linux, fts_pathlen (which appears before fts_info) is an unsigned short, whereas on BSD it's a size_t. The stubgen test succeeds because it recovers the offsets from the C API rather than computing them from the OCaml code.
(Just keeping track of this bug while working on #574)
On macos, the examples/fts/foreign version fails due to getting an invalid argument back for fts_info, but the stubgen one succeeds.
It seems to be a different number every time for fts_info_of_int, so needs more investigation.
The text was updated successfully, but these errors were encountered: