1
1
//! Tests for custom json target specifications.
2
2
3
- #![ allow( deprecated) ]
4
-
5
- use cargo_test_support:: { basic_manifest, project} ;
3
+ use cargo_test_support:: { basic_manifest, project, str} ;
6
4
use std:: fs;
7
5
8
6
const MINIMAL_LIB : & str = r#"
@@ -60,7 +58,13 @@ fn custom_target_minimal() {
60
58
// Ensure that the correct style of flag is passed to --target with doc tests.
61
59
p. cargo ( "test --doc --target src/../custom-target.json -v -Zdoctest-xcompile" )
62
60
. masquerade_as_nightly_cargo ( & [ "doctest-xcompile" , "no_core" , "lang_items" ] )
63
- . with_stderr_contains ( "[RUNNING] `rustdoc [..]--target [..]foo/custom-target.json[..]" )
61
+ . with_stderr_data ( str![ [ r#"
62
+ [FRESH] foo v0.0.1 ([ROOT]/foo)
63
+ [FINISHED] `test` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
64
+ [DOCTEST] foo
65
+ [RUNNING] `rustdoc [..]--target [..]foo/custom-target.json[..]
66
+
67
+ "# ] ] )
64
68
. run ( ) ;
65
69
}
66
70
@@ -157,26 +161,24 @@ fn changing_spec_rebuilds() {
157
161
158
162
p. cargo ( "build --lib --target custom-target.json -v" ) . run ( ) ;
159
163
p. cargo ( "build --lib --target custom-target.json -v" )
160
- . with_stderr (
161
- "\
162
- [FRESH] foo [..]
163
- [FINISHED] [..]
164
- " ,
165
- )
164
+ . with_stderr_data ( str![ [ r#"
165
+ [FRESH] foo v0.0.1 ([ROOT]/foo)
166
+ [FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
167
+
168
+ "# ] ] )
166
169
. run ( ) ;
167
170
let spec_path = p. root ( ) . join ( "custom-target.json" ) ;
168
171
let spec = fs:: read_to_string ( & spec_path) . unwrap ( ) ;
169
172
// Some arbitrary change that I hope is safe.
170
173
let spec = spec. replace ( '{' , "{\n \" vendor\" : \" unknown\" ,\n " ) ;
171
174
fs:: write ( & spec_path, spec) . unwrap ( ) ;
172
175
p. cargo ( "build --lib --target custom-target.json -v" )
173
- . with_stderr (
174
- "\
175
- [COMPILING] foo v0.0.1 [..]
176
- [RUNNING] `rustc [..]
177
- [FINISHED] [..]
178
- " ,
179
- )
176
+ . with_stderr_data ( str![ [ r#"
177
+ [COMPILING] foo v0.0.1 ([ROOT]/foo)
178
+ [RUNNING] `rustc --crate-name foo --edition=2015 src/lib.rs [..]
179
+ [FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
180
+
181
+ "# ] ] )
180
182
. run ( ) ;
181
183
}
182
184
@@ -204,7 +206,10 @@ fn changing_spec_relearns_crate_types() {
204
206
205
207
p. cargo ( "build --lib --target custom-target.json -v" )
206
208
. with_status ( 101 )
207
- . with_stderr ( "error: cannot produce cdylib for `foo [..]" )
209
+ . with_stderr_data ( str![ [ r#"
210
+ [ERROR] cannot produce cdylib for `foo v0.1.0 ([ROOT]/foo)` [..]
211
+
212
+ "# ] ] )
208
213
. run ( ) ;
209
214
210
215
// Enable dynamic linking.
@@ -214,13 +219,12 @@ fn changing_spec_relearns_crate_types() {
214
219
fs:: write ( & spec_path, spec) . unwrap ( ) ;
215
220
216
221
p. cargo ( "build --lib --target custom-target.json -v" )
217
- . with_stderr (
218
- "\
219
- [COMPILING] foo [..]
220
- [RUNNING] `rustc [..]
221
- [FINISHED] [..]
222
- " ,
223
- )
222
+ . with_stderr_data ( str![ [ r#"
223
+ [COMPILING] foo v0.1.0 ([ROOT]/foo)
224
+ [RUNNING] `rustc --crate-name foo --edition=2015 src/lib.rs [..]
225
+ [FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
226
+
227
+ "# ] ] )
224
228
. run ( ) ;
225
229
}
226
230
@@ -245,16 +249,18 @@ fn custom_target_ignores_filepath() {
245
249
246
250
// Should build the library the first time.
247
251
p. cargo ( "build --lib --target a/custom-target.json" )
248
- . with_stderr (
249
- "\
250
- [..]Compiling foo v0.0.1 ([..])
251
- [FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [..]
252
- " ,
253
- )
252
+ . with_stderr_data ( str![ [ r#"
253
+ [COMPILING] foo v0.0.1 ([ROOT]/foo)
254
+ [FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
255
+
256
+ "# ] ] )
254
257
. run ( ) ;
255
258
256
259
// But not the second time, even though the path to the custom target is dfferent.
257
260
p. cargo ( "build --lib --target b/custom-target.json" )
258
- . with_stderr ( "[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [..]" )
261
+ . with_stderr_data ( str![ [ r#"
262
+ [FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
263
+
264
+ "# ] ] )
259
265
. run ( ) ;
260
266
}
0 commit comments