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
--test in cargo-show-asm behaves the same way --test works in cargo build - it builds integration test. To look at the assembly (llvm, mir, etc) of the test themselves you need to build a library with the test profile: cargo asm --profile test it_works 0 - this works for default library template for example.
Try the following:
The default library template comes with a test called
tests::it_works
.shows "No tests available." Trying to specify the test:
doesn't work either, as it shows "no test target named
tests::it_works
."The text was updated successfully, but these errors were encountered: