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
If you want to run thin_vec unit tests you may try to do something like ...
./x.py test compiler/rustc_data_structures/src/thin_vec/tests.rs
But that's not possible.
The right way is ...
./x.py test compiler/rustc_data_structures/ --test-args thin_vec
We should add this information to https://rustc-dev-guide.rust-lang.org/tests/running.html and possibly discuss a bit about why unit tests are not supported using a single file. Maybe we should also support that through x.py.
The text was updated successfully, but these errors were encountered:
If you want to run
thin_vec
unit tests you may try to do something like ..../x.py test compiler/rustc_data_structures/src/thin_vec/tests.rs
But that's not possible.
The right way is ...
./x.py test compiler/rustc_data_structures/ --test-args thin_vec
We should add this information to https://rustc-dev-guide.rust-lang.org/tests/running.html and possibly discuss a bit about why unit tests are not supported using a single file. Maybe we should also support that through x.py.
The text was updated successfully, but these errors were encountered: