upstream only tests (a subset of) 64-bit, but bootstrap has no filtering
for target width for now.. these two platforms probably cover where
rust-analyzer is used in practice.
Forwaded: not-needed
Signed-off-by: Fabian Grünbichler <debian@fabian.gruenbichler.email>
Gbp-Pq: Topic build
Gbp-Pq: Name tests-skip-rust-analyzer-on-most-targets.patch
// FIXME: eventually, we should probably reduce the amount of target tuple substring
// matching in bootstrap.
- if target.starts_with("i686") {
+ // Debian: invert and only test these two, instead of skipping only 32-bit x86
+ if (!target.starts_with("x86_64") && !target.starts_with("aarch64")) || target.contains("hurd") {
return;
}