@@ -316,7 +316,7 @@ fn features_are_unified_among_lib_and_bin_dep_of_same_target() {
316
316
[COMPILING] d2 v0.0.1 ([CWD]/d2)
317
317
[COMPILING] d1 v0.0.1 ([CWD]/d1)
318
318
[COMPILING] foo v0.0.1 ([CWD])
319
- [FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
319
+ [FINISHED] ` dev` profile [unoptimized + debuginfo] target(s) in [..]
320
320
" ,
321
321
)
322
322
. run ( ) ;
@@ -568,7 +568,9 @@ fn build_script_with_bin_artifacts() {
568
568
. masquerade_as_nightly_cargo ( & [ "bindeps" ] )
569
569
. with_stderr_contains ( "[COMPILING] foo [..]" )
570
570
. with_stderr_contains ( "[COMPILING] bar v0.5.0 ([CWD]/bar)" )
571
- . with_stderr_contains ( "[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]" )
571
+ . with_stderr_contains (
572
+ "[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [..]" ,
573
+ )
572
574
. run ( ) ;
573
575
574
576
let build_script_output = build_script_output_string ( & p, "foo" ) ;
@@ -752,7 +754,7 @@ fn build_script_with_selected_dashed_bin_artifact_and_lib_true() {
752
754
"\
753
755
[COMPILING] bar-baz v0.5.0 ([CWD]/bar)
754
756
[COMPILING] foo [..]
755
- [FINISHED] dev [unoptimized + debuginfo] target(s) in [..]" ,
757
+ [FINISHED] ` dev` profile [unoptimized + debuginfo] target(s) in [..]" ,
756
758
)
757
759
. run ( ) ;
758
760
@@ -849,7 +851,7 @@ fn lib_with_selected_dashed_bin_artifact_and_lib_true() {
849
851
"\
850
852
[COMPILING] bar-baz v0.5.0 ([CWD]/bar)
851
853
[COMPILING] foo [..]
852
- [FINISHED] dev [unoptimized + debuginfo] target(s) in [..]" ,
854
+ [FINISHED] ` dev` profile [unoptimized + debuginfo] target(s) in [..]" ,
853
855
)
854
856
. run ( ) ;
855
857
@@ -895,7 +897,9 @@ fn allow_artifact_and_no_artifact_dep_to_same_package_within_different_dep_categ
895
897
p. cargo ( "test -Z bindeps" )
896
898
. masquerade_as_nightly_cargo ( & [ "bindeps" ] )
897
899
. with_stderr_contains ( "[COMPILING] bar v0.5.0 ([CWD]/bar)" )
898
- . with_stderr_contains ( "[FINISHED] test [unoptimized + debuginfo] target(s) in [..]" )
900
+ . with_stderr_contains (
901
+ "[FINISHED] `test` profile [unoptimized + debuginfo] target(s) in [..]" ,
902
+ )
899
903
. run ( ) ;
900
904
}
901
905
@@ -1229,7 +1233,7 @@ fn no_cross_doctests_works_with_artifacts() {
1229
1233
"\
1230
1234
[COMPILING] bar v0.5.0 ([CWD]/bar)
1231
1235
[COMPILING] foo v0.0.1 ([CWD])
1232
- [FINISHED] test [unoptimized + debuginfo] target(s) in [..]
1236
+ [FINISHED] ` test` profile [unoptimized + debuginfo] target(s) in [..]
1233
1237
[RUNNING] [..] (target/{triple}/debug/deps/foo-[..][EXE])
1234
1238
[DOCTEST] foo
1235
1239
" ,
@@ -1251,7 +1255,7 @@ fn no_cross_doctests_works_with_artifacts() {
1251
1255
[RUNNING] `rustc --crate-name bar bar/src/main.rs [..]--target {triple} [..]
1252
1256
[COMPILING] foo v0.0.1 ([CWD])
1253
1257
[RUNNING] `rustc --crate-name foo [..]
1254
- [FINISHED] test [unoptimized + debuginfo] target(s) in [..]" ,
1258
+ [FINISHED] ` test` profile [unoptimized + debuginfo] target(s) in [..]" ,
1255
1259
triple = target
1256
1260
) )
1257
1261
. run ( ) ;
@@ -1268,7 +1272,7 @@ fn no_cross_doctests_works_with_artifacts() {
1268
1272
"[FRESH] bar v0.5.0 ([CWD]/bar)
1269
1273
[COMPILING] foo v0.0.1 ([CWD])
1270
1274
[RUNNING] `rustc --crate-name foo [..]--test[..]
1271
- [FINISHED] test [unoptimized + debuginfo] target(s) in [..]
1275
+ [FINISHED] ` test` profile [unoptimized + debuginfo] target(s) in [..]
1272
1276
[RUNNING] `[CWD]/target/{triple}/debug/deps/foo-[..][EXE]`" ,
1273
1277
triple = target
1274
1278
) )
@@ -1702,7 +1706,7 @@ fn allow_artifact_and_non_artifact_dependency_to_same_crate_if_these_are_not_the
1702
1706
"\
1703
1707
[COMPILING] bar [..]
1704
1708
[COMPILING] foo [..]
1705
- [FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
1709
+ [FINISHED] ` dev` profile [unoptimized + debuginfo] target(s) in [..]
1706
1710
" ,
1707
1711
)
1708
1712
. run ( ) ;
@@ -1737,7 +1741,7 @@ fn prevent_no_lib_warning_with_artifact_dependencies() {
1737
1741
"\
1738
1742
[COMPILING] bar v0.5.0 ([CWD]/bar)\n \
1739
1743
[CHECKING] foo v0.0.0 ([CWD])\n \
1740
- [FINISHED] dev [unoptimized + debuginfo] target(s) in [..]",
1744
+ [FINISHED] ` dev` profile [unoptimized + debuginfo] target(s) in [..]",
1741
1745
)
1742
1746
. run ( ) ;
1743
1747
}
@@ -1771,7 +1775,7 @@ fn show_no_lib_warning_with_artifact_dependencies_that_have_no_lib_but_lib_true(
1771
1775
. with_stderr_contains ( "[WARNING] foo v0.0.0 ([CWD]) ignoring invalid dependency `bar` which is missing a lib target" )
1772
1776
. with_stderr_contains ( "[COMPILING] bar v0.5.0 ([CWD]/bar)" )
1773
1777
. with_stderr_contains ( "[CHECKING] foo [..]" )
1774
- . with_stderr_contains ( "[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]" )
1778
+ . with_stderr_contains ( "[FINISHED] ` dev` profile [unoptimized + debuginfo] target(s) in [..]" )
1775
1779
. run ( ) ;
1776
1780
}
1777
1781
@@ -1977,7 +1981,7 @@ fn env_vars_and_build_products_for_various_build_targets() {
1977
1981
"\
1978
1982
[COMPILING] bar [..]
1979
1983
[COMPILING] foo [..]
1980
- [FINISHED] test [unoptimized + debuginfo] target(s) in [..]
1984
+ [FINISHED] ` test` profile [unoptimized + debuginfo] target(s) in [..]
1981
1985
[RUNNING] unittests [..]
1982
1986
[RUNNING] tests/main.rs [..]
1983
1987
[DOCTEST] foo
@@ -2151,7 +2155,7 @@ fn doc_lib_true() {
2151
2155
[COMPILING] bar v0.0.1 ([CWD]/bar)
2152
2156
[DOCUMENTING] bar v0.0.1 ([CWD]/bar)
2153
2157
[DOCUMENTING] foo v0.0.1 ([CWD])
2154
- [FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
2158
+ [FINISHED] ` dev` profile [unoptimized + debuginfo] target(s) in [..]
2155
2159
[GENERATED] [CWD]/target/doc/foo/index.html
2156
2160
" ,
2157
2161
)
@@ -2230,7 +2234,7 @@ fn rustdoc_works_on_libs_with_artifacts_and_lib_false() {
2230
2234
"\
2231
2235
[COMPILING] bar v0.5.0 ([CWD]/bar)
2232
2236
[DOCUMENTING] foo v0.0.1 ([CWD])
2233
- [FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
2237
+ [FINISHED] ` dev` profile [unoptimized + debuginfo] target(s) in [..]
2234
2238
[GENERATED] [CWD]/target/doc/foo/index.html
2235
2239
" ,
2236
2240
)
@@ -2433,7 +2437,7 @@ fn calc_bin_artifact_fingerprint() {
2433
2437
"\
2434
2438
[COMPILING] bar v0.5.0 ([CWD]/bar)
2435
2439
[CHECKING] foo v0.1.0 ([CWD])
2436
- [FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
2440
+ [FINISHED] ` dev` profile [unoptimized + debuginfo] target(s) in [..]
2437
2441
" ,
2438
2442
)
2439
2443
. run ( ) ;
@@ -2450,7 +2454,7 @@ fn calc_bin_artifact_fingerprint() {
2450
2454
[DIRTY] foo v0.1.0 ([CWD]): the dependency bar was rebuilt
2451
2455
[CHECKING] foo v0.1.0 ([CWD])
2452
2456
[RUNNING] `rustc --crate-name foo [..]`
2453
- [FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
2457
+ [FINISHED] ` dev` profile [unoptimized + debuginfo] target(s) in [..]
2454
2458
" ,
2455
2459
)
2456
2460
. run ( ) ;
@@ -2462,7 +2466,7 @@ fn calc_bin_artifact_fingerprint() {
2462
2466
"\
2463
2467
[FRESH] bar v0.5.0 ([CWD]/bar)
2464
2468
[FRESH] foo v0.1.0 ([CWD])
2465
- [FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
2469
+ [FINISHED] ` dev` profile [unoptimized + debuginfo] target(s) in [..]
2466
2470
" ,
2467
2471
)
2468
2472
. run ( ) ;
@@ -2516,7 +2520,7 @@ fn with_target_and_optional() {
2516
2520
[RUNNING] `rustc --crate-name d1 [..]--crate-type bin[..]
2517
2521
[CHECKING] foo v0.0.1 [..]
2518
2522
[RUNNING] `rustc --crate-name foo [..]--cfg[..]d1[..]
2519
- [FINISHED] dev [..]
2523
+ [FINISHED] ` dev` profile [..]
2520
2524
" ,
2521
2525
)
2522
2526
. run ( ) ;
@@ -2567,7 +2571,7 @@ fn with_assumed_host_target_and_optional_build_dep() {
2567
2571
[RUNNING] `rustc --crate-name d1 [..]--crate-type bin[..]
2568
2572
[RUNNING] `[CWD]/target/debug/build/foo-[..]/build-script-build`
2569
2573
[RUNNING] `rustc --crate-name foo [..]--cfg[..]d1[..]
2570
- [FINISHED] dev [..]
2574
+ [FINISHED] ` dev` profile [..]
2571
2575
" ,
2572
2576
)
2573
2577
. run ( ) ;
@@ -2690,7 +2694,7 @@ fn decouple_same_target_transitive_dep_from_artifact_dep() {
2690
2694
[COMPILING] a v0.1.0 ([CWD]/a)
2691
2695
[COMPILING] bar v0.1.0 ([CWD]/bar)
2692
2696
[COMPILING] foo v0.1.0 ([CWD])
2693
- [FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
2697
+ [FINISHED] ` dev` profile [unoptimized + debuginfo] target(s) in [..]
2694
2698
" ,
2695
2699
)
2696
2700
. run ( ) ;
@@ -2790,7 +2794,7 @@ fn decouple_same_target_transitive_dep_from_artifact_dep_lib() {
2790
2794
[COMPILING] a v0.1.0 ([CWD]/a)
2791
2795
[COMPILING] bar v0.1.0 ([CWD]/bar)
2792
2796
[COMPILING] foo v0.1.0 ([CWD])
2793
- [FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
2797
+ [FINISHED] ` dev` profile [unoptimized + debuginfo] target(s) in [..]
2794
2798
" ,
2795
2799
)
2796
2800
. run ( ) ;
@@ -2915,7 +2919,7 @@ fn decouple_same_target_transitive_dep_from_artifact_dep_and_proc_macro() {
2915
2919
[COMPILING] c v0.1.0 ([CWD]/c)
2916
2920
[COMPILING] bar v0.1.0 ([CWD]/bar)
2917
2921
[COMPILING] foo v0.1.0 ([CWD])
2918
- [FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
2922
+ [FINISHED] ` dev` profile [unoptimized + debuginfo] target(s) in [..]
2919
2923
" ,
2920
2924
)
2921
2925
. run ( ) ;
@@ -2974,7 +2978,7 @@ fn same_target_artifact_dep_sharing() {
2974
2978
[COMPILING] a v0.1.0 ([CWD]/a)
2975
2979
[COMPILING] bar v0.1.0 ([CWD]/bar)
2976
2980
[COMPILING] foo v0.1.0 ([CWD])
2977
- [FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
2981
+ [FINISHED] ` dev` profile [unoptimized + debuginfo] target(s) in [..]
2978
2982
" ,
2979
2983
)
2980
2984
. run ( ) ;
0 commit comments