summaryrefslogtreecommitdiffstats
path: root/src/tools/cargo/tests/testsuite/profile_custom.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/cargo/tests/testsuite/profile_custom.rs')
-rw-r--r--src/tools/cargo/tests/testsuite/profile_custom.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/tools/cargo/tests/testsuite/profile_custom.rs b/src/tools/cargo/tests/testsuite/profile_custom.rs
index ea6b54c95..f7139e552 100644
--- a/src/tools/cargo/tests/testsuite/profile_custom.rs
+++ b/src/tools/cargo/tests/testsuite/profile_custom.rs
@@ -543,7 +543,9 @@ fn clean_custom_dirname() {
assert!(!p.build_dir().join("release").is_dir());
// This should clean 'other'
- p.cargo("clean --profile=other").with_stderr("").run();
+ p.cargo("clean --profile=other")
+ .with_stderr("[REMOVED] [..] files, [..] total")
+ .run();
assert!(p.build_dir().join("debug").is_dir());
assert!(!p.build_dir().join("other").is_dir());
}