Results 61 comments of Harry Stern

So unfortunately what's happening is that test-threads=1 actually just breaks all my tests. This is because my library is a wrapper around seccomp, which allows you to tell the kernel...

With RUST_TEST_THREADS=2 and [just running the tests](https://github.com/boustrophedon/extrasafe/runs/5700278643), it doesn't have the issue. However with RUST_TEST_THREADS=2 and [running the examples as well](https://github.com/boustrophedon/extrasafe/actions/runs/2043310710), it segfaults on the subprocess example.

I'm not selecting nightly anywhere - does tarpaulin select nightly internally somewhere? Per [the github CI documentation](https://github.com/actions/virtual-environments/blob/ubuntu20/20220227.1/images/linux/Ubuntu2004-Readme.md#rust-tools) it's running rust 1.59. I'll try adding an explicit .wait() at the subprocess...

Actually I just checked and I have explicit kill calls. What's happening is that I have: - The main process - A "db server" process - A "web server" process...

+1 for this behavior being unexpected. As an example, in the todos example when you build the filters which all contain paths under `/todos`: https://github.com/seanmonstar/warp/blob/f334f51dc33cf61f145c8d693a554958a9c6ab61/examples/todos.rs#L93 if you add the lines...

Thanks for reporting this! I will be the first to admit that while I know the basics of dynamic linkage, it is a black magic that I try not to...

> Apparently according to https://www.technovelty.org/linux/exploring-origin.html LD_ORIGIN_PATH is actually a fallback if readlink("/proc/self/exe") fails, unfortunately for us. That is unfortunate. I think probably the best thing to do if someone were...

Hi! Thanks for the PR - I'll try to take a look at it in the next few days. I haven't really touched this project much since starting a new...

Hi! Thanks for working on this. I think it looks better than the original PR but the underlying issue here is twofold: One, seccompiler doesn't support riscv. Two, I see...

If you can get qemu running in github actions in a reasonable amount of time (I mean CI runtime) that would be awesome. If not we can try exploring something...