Matteo Nardi
Matteo Nardi
This happens also to files in `/dev/shm`
Ubuntu has no `/tmp` mount, by adding it I could reproduce the issue. It seems the path extracting code has a bug when encountering mount points. That code was mostly...
Commands to reproduce under Ubuntu and other distributions not using `tmpfs`: ``` mkdir /tmp/tmp/ sudo mount -t tmpfs some_arbitrary_name /tmp/tmp/ cargo build && sudo TMPDIR=/tmp/tmp ./target/debug/test-suite file ```
For now stick to to the minor issues and let's wait for Bandito's opinion before going forward. I think we wanted to give tracing a try, the first solution which...
> unsafe impl of Send and Sync are safe to use. [*nitpiking mode on*] If `PendingRename` or `PendingCreate` contained a `!Send` future, it would be a bug. Since you're provinding...
Yesterday I was talking to @banditopazzo about this issue and we kind of agreed that it would be better to run the test suit with something different from `cargo test`....
All the test were ported to the new system. I'll work on documentation and general cleanup, than it will be ready for review.
This PR is now ready for review. - I've split the test suite in a different binary. See [README](https://github.com/Exein-io/pulsar/tree/test-suite/test-suite). - I've added xtasks for every pulsar binary which need to...
I've rebased to main and added https://github.com/Exein-io/pulsar/pull/25/commits/2b3e58454b91f689329490850a2b83112f5c13e3
Once this if fixed, we increase the following constants: - [ ] file-system-monitor. The maximum file paths should be 4096 - [ ] process-monitor. The maximum path of binaries should...