Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: migrate timings_works to snapbox #14082

Merged
merged 2 commits into from
Jun 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions tests/testsuite/member_discovery.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
//! Tests for workspace member discovery.

#![allow(deprecated)]

use cargo::core::{Shell, Workspace};
use cargo::util::context::GlobalContext;

Expand Down
20 changes: 9 additions & 11 deletions tests/testsuite/timings.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
//! Tests for --timings.

#![allow(deprecated)]

use cargo_test_support::project;
use cargo_test_support::registry::Package;
use cargo_test_support::str;

#[cargo_test]
fn timings_works() {
Expand All @@ -29,18 +28,17 @@ fn timings_works() {
.build();

p.cargo("build --all-targets --timings")
.with_stderr_unordered(
"\
[UPDATING] [..]
.with_stderr_data(str![[r#"
[UPDATING] `dummy-registry` index
[LOCKING] 2 packages to latest compatible versions
[DOWNLOADING] crates ...
[DOWNLOADED] dep v0.1.0 [..]
[DOWNLOADED] dep v0.1.0 (registry `dummy-registry`)
[COMPILING] dep v0.1.0
[COMPILING] foo v0.1.0 [..]
[FINISHED] [..]
Timing report saved to [..]/foo/target/cargo-timings/cargo-timing-[..].html
",
)
[COMPILING] foo v0.1.0 ([ROOT]/foo)
Timing report saved to [ROOT]/foo/target/cargo-timings/cargo-timing-[..].html
[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s

"#]])
.run();

p.cargo("clean").run();
Expand Down