-
Notifications
You must be signed in to change notification settings - Fork 371
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
./miri run: directly run binary instead of using 'cargo run' #3881
Conversation
@bors r+ |
./miri run: directly run binary instead of using 'cargo run' This avoids re-building miri without dev dependencies, so it makes `./miri run` a lot faster if `./miri test` was already executed before.
💔 Test failed - checks-actions |
@bors r+ |
./miri run: directly run binary instead of using 'cargo run' This avoids re-building miri without dev dependencies, so it makes `./miri run` a lot faster if `./miri test` was already executed before.
💔 Test failed - checks-actions |
Hm, it works everywhere except on Windows... but the file path seems right. The error code translates to Cc @ChrisDenton any idea what could help here? :) |
Maybe using |
./miri run: directly run binary instead of using 'cargo run' This avoids re-building miri without dev dependencies, so it makes `./miri run` a lot faster if `./miri test` was already executed before.
💔 Test failed - checks-actions |
Nope, unfortunately this does not help. :( |
The only other idea I have is to keep using |
A DLL's directory has to be in (Well there are also other options but they're more complicated) |
So probably we have to add |
Let's see... |
☀️ Test successful - checks-actions |
This avoids re-building miri without dev dependencies, so it makes
./miri run
a lot faster if./miri test
was already executed before.