J. Frimmel
J. Frimmel
Hello, first of all: thank you for this great learning resource! I have a problem when running the example code of these tutorials. I've recorded a GIF demonstrating the issue:...
See #59 for reasons, why it is disabled. We need a different way of communicating the issues to the user, even if there are no read permissions.
As noted in this line: https://github.com/jfrimmel/cargo-valgrind/blob/2da5213228f05f0cbd19819fd0ad51788230bf62/src/main.rs#L99 the program needs a drop guard for cases, when the main program dies (e.g. it was killed with `Ctrl+C`). The current behavior is, that...
If you have an invalid free, `cargo-valgrind` currently exits with an error. This is due to a changed Valgrind XML: ```xml ... ... InvalidFree Invalid free() / delete / delete[]...
If the program under test produces a stack overflow, the following output is printed: ``` Finished dev [unoptimized + debuginfo] target(s) in 0.24s Analyzing `target/debug/huge_box` ==5113== If you believe this...
This is an upstream report of https://github.com/sotrh/learn-wgpu/issues/230, which I found while learning the `wgpu` API. **Description** When I resize the window, sometimes the application hangs endlessly. I've recorded a GIF...
Hey, I've skimmed over the code implementing the blog rendering and found (with the help of clippy, of course) some minor issues. I've prepared this PR, which has individual commits...
This adds a regression test for #129301 by minimizing the code in the linked issue and putting it into a `#![no_core]`-compatible format, so that it can easily be used within...
Unless I'm mistaken, there is currently no suitable `valgrind`-binary available for Windows. Therefore I want to ask, whether this project should simply drop support for Windows at this point. Windows-binaries...
This PR removes the CI-jobs, that build on Windows, effectively allowing for non-portable code in the future. Since valgrind is only available on POSIX-systems, but crucially not on Windows as...