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
When llvm-cov show shows instantiation groups, it seems to print them in a non-deterministic order (presumably influenced by hash bucket order).
This is a hassle for Rust's -Cinstrument-coverage tests, since they have to jump through hoops to ignore instantiation names when comparing output snapshots.
Ideally the instantiations should at least be naïvely sorted by their function name. That would at least be deterministic in the common case where all instantiations have distinct names.