@@ -652,14 +652,6 @@ fn generate_targets<'a>(pkg: &'a Package,
652
652
pkg, bins, "bin" , Target :: is_bin, profile) ?) ;
653
653
targets. append ( & mut propose_indicated_targets (
654
654
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) ?) ;
663
655
// If --tests was specified, add all targets that would be
664
656
// generated by `cargo test`.
665
657
let test_filter = match tests {
@@ -668,6 +660,14 @@ fn generate_targets<'a>(pkg: &'a Package,
668
660
} ;
669
661
targets. append ( & mut propose_indicated_targets (
670
662
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) ?) ;
671
671
targets
672
672
}
673
673
} ;
0 commit comments