4
4
//! rebuild the real one. There is a separate integration test `build-std`
5
5
//! which builds the real thing, but that should be avoided if possible.
6
6
7
- #![ allow( deprecated) ]
8
-
9
7
use cargo_test_support:: registry:: { Dependency , Package } ;
10
8
use cargo_test_support:: ProjectBuilder ;
11
- use cargo_test_support:: { paths, project, rustc_host, Execs } ;
9
+ use cargo_test_support:: { paths, project, rustc_host, str , Execs } ;
12
10
use std:: path:: { Path , PathBuf } ;
13
11
14
12
struct Setup {
@@ -254,14 +252,22 @@ fn simple_lib_std() {
254
252
p. cargo ( "build -v" )
255
253
. build_std ( & setup)
256
254
. target_host ( )
257
- . with_stderr_contains ( "[RUNNING] `[..]--crate-name std [..]`" )
255
+ . with_stderr_data ( str![ [ r#"
256
+ ...
257
+ [RUNNING] `[..] rustc --crate-name std [..]`
258
+ ...
259
+ "# ] ] )
258
260
. run ( ) ;
259
261
// Check freshness.
260
262
p. change_file ( "src/lib.rs" , " " ) ;
261
263
p. cargo ( "build -v" )
262
264
. build_std ( & setup)
263
265
. target_host ( )
264
- . with_stderr_contains ( "[FRESH] std[..]" )
266
+ . with_stderr_data ( str![ [ r#"
267
+ ...
268
+ [FRESH] std v0.1.0 ([..]/tests/testsuite/mock-std/library/std)
269
+ ...
270
+ "# ] ] )
265
271
. run ( ) ;
266
272
}
267
273
@@ -273,6 +279,7 @@ fn simple_bin_std() {
273
279
p. cargo ( "run -v" ) . build_std ( & setup) . target_host ( ) . run ( ) ;
274
280
}
275
281
282
+ #[ allow( deprecated) ]
276
283
#[ cargo_test( build_std_mock) ]
277
284
fn lib_nostd ( ) {
278
285
let setup = setup ( ) ;
@@ -306,7 +313,11 @@ fn check_core() {
306
313
p. cargo ( "check -v" )
307
314
. build_std_arg ( & setup, "core" )
308
315
. target_host ( )
309
- . with_stderr_contains ( "[WARNING] [..]unused_fn[..]" )
316
+ . with_stderr_data ( str![ [ r#"
317
+ ...
318
+ [WARNING] function `unused_fn` is never used
319
+ ...
320
+ "# ] ] )
310
321
. run ( ) ;
311
322
}
312
323
@@ -366,7 +377,14 @@ fn test() {
366
377
p. cargo ( "test -v" )
367
378
. build_std ( & setup)
368
379
. target_host ( )
369
- . with_stdout_contains ( "test tests::it_works ... ok" )
380
+ . with_stdout_data ( str![ [ r#"
381
+
382
+ running 1 test
383
+ test tests::it_works ... ok
384
+
385
+ test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in [ELAPSED]s
386
+ ...
387
+ "# ] ] )
370
388
. run ( ) ;
371
389
}
372
390
@@ -483,7 +501,15 @@ fn doctest() {
483
501
484
502
p. cargo ( "test --doc -v -Zdoctest-xcompile" )
485
503
. build_std ( & setup)
486
- . with_stdout_contains ( "test src/lib.rs - f [..] ... ok" )
504
+ . with_stdout_data ( str![ [ r#"
505
+
506
+ running 1 test
507
+ test src/lib.rs - f (line 3) ... ok
508
+
509
+ test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in [ELAPSED]s
510
+
511
+
512
+ "# ] ] )
487
513
. target_host ( )
488
514
. run ( ) ;
489
515
}
@@ -507,7 +533,11 @@ fn no_implicit_alloc() {
507
533
p. cargo ( "build -v" )
508
534
. build_std ( & setup)
509
535
. target_host ( )
510
- . with_stderr_contains ( "[..]use of undeclared [..]`alloc`" )
536
+ . with_stderr_data ( str![ [ r#"
537
+ ...
538
+ error[E0433]: failed to resolve: use of undeclared crate or module `alloc`
539
+ ...
540
+ "# ] ] )
511
541
. with_status ( 101 )
512
542
. run ( ) ;
513
543
}
@@ -562,6 +592,7 @@ fn ignores_incremental() {
562
592
. starts_with( "foo-" ) ) ;
563
593
}
564
594
595
+ #[ allow( deprecated) ]
565
596
#[ cargo_test( build_std_mock) ]
566
597
fn cargo_config_injects_compiler_builtins ( ) {
567
598
let setup = setup ( ) ;
@@ -622,7 +653,11 @@ fn no_roots() {
622
653
p. cargo ( "build" )
623
654
. build_std ( & setup)
624
655
. target_host ( )
625
- . with_stderr_contains ( "[FINISHED] [..]" )
656
+ . with_stderr_data ( str![ [ r#"
657
+ ...
658
+ [FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
659
+
660
+ "# ] ] )
626
661
. run ( ) ;
627
662
}
628
663
@@ -648,10 +683,15 @@ fn proc_macro_only() {
648
683
p. cargo ( "build" )
649
684
. build_std ( & setup)
650
685
. target_host ( )
651
- . with_stderr_contains ( "[FINISHED] [..]" )
686
+ . with_stderr_data ( str![ [ r#"
687
+ ...
688
+ [FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
689
+
690
+ "# ] ] )
652
691
. run ( ) ;
653
692
}
654
693
694
+ #[ allow( deprecated) ]
655
695
#[ cargo_test( build_std_mock) ]
656
696
fn fetch ( ) {
657
697
let setup = setup ( ) ;
0 commit comments