Skip to content

Commit efc0dd1

Browse files
committed
Don't change order of tests and benches for cleaner diff.
1 parent e171e00 commit efc0dd1

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/cargo/ops/cargo_compile.rs

+8-8
Original file line numberDiff line numberDiff line change
@@ -652,14 +652,6 @@ fn generate_targets<'a>(pkg: &'a Package,
652652
pkg, bins, "bin", Target::is_bin, profile)?);
653653
targets.append(&mut propose_indicated_targets(
654654
pkg, examples, "example", Target::is_example, profile)?);
655-
// If --benches was specified, add all targets that would be
656-
// generated by `cargo bench`.
657-
let bench_filter = match benches {
658-
FilterRule::All => Target::benched,
659-
FilterRule::Just(_) => Target::is_bench
660-
};
661-
targets.append(&mut propose_indicated_targets(
662-
pkg, benches, "bench", bench_filter, bench_profile)?);
663655
// If --tests was specified, add all targets that would be
664656
// generated by `cargo test`.
665657
let test_filter = match tests {
@@ -668,6 +660,14 @@ fn generate_targets<'a>(pkg: &'a Package,
668660
};
669661
targets.append(&mut propose_indicated_targets(
670662
pkg, tests, "test", test_filter, test_profile)?);
663+
// If --benches was specified, add all targets that would be
664+
// generated by `cargo bench`.
665+
let bench_filter = match benches {
666+
FilterRule::All => Target::benched,
667+
FilterRule::Just(_) => Target::is_bench
668+
};
669+
targets.append(&mut propose_indicated_targets(
670+
pkg, benches, "bench", bench_filter, bench_profile)?);
671671
targets
672672
}
673673
};

0 commit comments

Comments
 (0)