Skip to content

Commit b1a157f

Browse files
committed
test: migrate custom_target to snapbox
1 parent 7ba6076 commit b1a157f

File tree

1 file changed

+38
-32
lines changed

1 file changed

+38
-32
lines changed

tests/testsuite/custom_target.rs

+38-32
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
//! Tests for custom json target specifications.
22
3-
#![allow(deprecated)]
4-
5-
use cargo_test_support::{basic_manifest, project};
3+
use cargo_test_support::{basic_manifest, project, str};
64
use std::fs;
75

86
const MINIMAL_LIB: &str = r#"
@@ -60,7 +58,13 @@ fn custom_target_minimal() {
6058
// Ensure that the correct style of flag is passed to --target with doc tests.
6159
p.cargo("test --doc --target src/../custom-target.json -v -Zdoctest-xcompile")
6260
.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+
"#]])
6468
.run();
6569
}
6670

@@ -157,26 +161,24 @@ fn changing_spec_rebuilds() {
157161

158162
p.cargo("build --lib --target custom-target.json -v").run();
159163
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+
"#]])
166169
.run();
167170
let spec_path = p.root().join("custom-target.json");
168171
let spec = fs::read_to_string(&spec_path).unwrap();
169172
// Some arbitrary change that I hope is safe.
170173
let spec = spec.replace('{', "{\n\"vendor\": \"unknown\",\n");
171174
fs::write(&spec_path, spec).unwrap();
172175
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+
"#]])
180182
.run();
181183
}
182184

@@ -204,7 +206,10 @@ fn changing_spec_relearns_crate_types() {
204206

205207
p.cargo("build --lib --target custom-target.json -v")
206208
.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+
"#]])
208213
.run();
209214

210215
// Enable dynamic linking.
@@ -214,13 +219,12 @@ fn changing_spec_relearns_crate_types() {
214219
fs::write(&spec_path, spec).unwrap();
215220

216221
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+
"#]])
224228
.run();
225229
}
226230

@@ -245,16 +249,18 @@ fn custom_target_ignores_filepath() {
245249

246250
// Should build the library the first time.
247251
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+
"#]])
254257
.run();
255258

256259
// But not the second time, even though the path to the custom target is dfferent.
257260
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+
"#]])
259265
.run();
260266
}

0 commit comments

Comments
 (0)