@@ -4,6 +4,7 @@ use std::io::prelude::*;
4
4
5
5
use cargo:: util:: ProcessBuilder ;
6
6
use cargotest:: install:: { cargo_home, has_installed_exe} ;
7
+ use cargotest:: support:: cross_compile;
7
8
use cargotest:: support:: git;
8
9
use cargotest:: support:: paths;
9
10
use cargotest:: support:: registry:: Package ;
@@ -1334,6 +1335,40 @@ fn dev_dependencies_lock_file_untouched() {
1334
1335
assert ! ( lock == lock2, "different lockfiles" ) ;
1335
1336
}
1336
1337
1338
+ #[ test]
1339
+ fn install_target_native ( ) {
1340
+ pkg ( "foo" , "0.1.0" ) ;
1341
+
1342
+ assert_that (
1343
+ cargo_process ( "install" )
1344
+ . arg ( "foo" )
1345
+ . arg ( "--target" )
1346
+ . arg ( cargotest:: rustc_host ( ) ) ,
1347
+ execs ( )
1348
+ . with_status ( 0 ) ,
1349
+ ) ;
1350
+ assert_that ( cargo_home ( ) , has_installed_exe ( "foo" ) ) ;
1351
+ }
1352
+
1353
+ #[ test]
1354
+ fn install_target_foreign ( ) {
1355
+ if cross_compile:: disabled ( ) {
1356
+ return ;
1357
+ }
1358
+
1359
+ pkg ( "foo" , "0.1.0" ) ;
1360
+
1361
+ assert_that (
1362
+ cargo_process ( "install" )
1363
+ . arg ( "foo" )
1364
+ . arg ( "--target" )
1365
+ . arg ( cross_compile:: alternate ( ) ) ,
1366
+ execs ( )
1367
+ . with_status ( 0 ) ,
1368
+ ) ;
1369
+ assert_that ( cargo_home ( ) , has_installed_exe ( "foo" ) ) ;
1370
+ }
1371
+
1337
1372
#[ test]
1338
1373
fn vers_precise ( ) {
1339
1374
pkg ( "foo" , "0.1.1" ) ;
@@ -1606,35 +1641,3 @@ fn git_repo_replace() {
1606
1641
. contains( & format!( "{}" , new_rev) )
1607
1642
) ;
1608
1643
}
1609
-
1610
- #[ test]
1611
- fn install_with_non_existent_target ( ) {
1612
- pkg ( "bar" , "0.0.1" ) ;
1613
-
1614
- let p = project ( "foo" )
1615
- . file (
1616
- "Cargo.toml" ,
1617
- r#"
1618
- [package]
1619
- name = "foo"
1620
- version = "0.1.0"
1621
- authors = []
1622
- "# ,
1623
- )
1624
- . file (
1625
- ".cargo/config" ,
1626
- r#"
1627
- [build]
1628
- target = "non-existing-target"
1629
- "# ,
1630
- )
1631
- . file ( "src/main.rs" , "fn main() {}" )
1632
- . build ( ) ;
1633
-
1634
- assert_that (
1635
- cargo_process ( "install" ) . arg ( "bar" ) . cwd ( p. root ( ) ) ,
1636
- execs ( ) . with_status ( 0 ) ,
1637
- ) ;
1638
- assert_that ( cargo_home ( ) , has_installed_exe ( "bar" ) ) ;
1639
- }
1640
-
0 commit comments