Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion tools/update-ui-test-files.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ set -e

TRYBUILD=overwrite ./cargo.sh +nightly test ui --test trybuild -p zerocopy --all-features
TRYBUILD=overwrite ./cargo.sh +stable test ui --test trybuild -p zerocopy --features=__internal_use_only_features_that_work_on_stable
TRYBUILD=overwrite ./cargo.sh +msrv test ui --test trybuild -p zerocopy --features=__internal_use_only_features_that_work_on_stable
# For developers using Rust Analyzer, it's often the case that Rust Analyzer has
# chosen versions of dependencies (especially syn) which have an MSRV higher than
# our own. Doing `rm Cargo.lock` here permits `./cargo.sh +msrv` to choose its own
# versions of these crates that have a lower MSRV.
rm Cargo.lock && TRYBUILD=overwrite ./cargo.sh +msrv test ui --test trybuild -p zerocopy --features=__internal_use_only_features_that_work_on_stable

TRYBUILD=overwrite ./cargo.sh +all test ui --test trybuild -p zerocopy-derive
Loading