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
5 changes: 4 additions & 1 deletion tests/testsuite/tree.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//! Tests for the `cargo tree` command.

use cargo_test_support::cross_compile::alternate;
use cargo_test_support::cross_compile::{self, alternate};
use cargo_test_support::registry::{Dependency, Package};
use cargo_test_support::{basic_manifest, git, project, rustc_host, Project};

Expand Down Expand Up @@ -324,6 +324,9 @@ a v0.1.0 ([..]/foo)
#[cargo_test]
fn filters_target() {
// --target flag
if cross_compile::disabled() {
return;
}
Package::new("targetdep", "1.0.0").publish();
Package::new("hostdep", "1.0.0").publish();
Package::new("devdep", "1.0.0").publish();
Expand Down