File tree 2 files changed +36
-0
lines changed
2 files changed +36
-0
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ pub fn cli() -> App {
32
32
"Install only the specified example" ,
33
33
"Install all examples" ,
34
34
)
35
+ . arg_target_triple ( "Build for the target triple" )
35
36
. arg ( opt ( "root" , "Directory to install packages into" ) . value_name ( "DIR" ) )
36
37
. after_help (
37
38
"\
Original file line number Diff line number Diff line change @@ -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" ) ;
You can’t perform that action at this time.
0 commit comments