Skip to content

Commit fd8a91d

Browse files
committed
fix(test): Un-redact Packaged files
This is a partial revert of #rust-lang#14121 (e11d172) Our focus for redacting (auto or with globs) includes - run-specific information (timing, hashes, platform-specific wording) - rustc-specific information (We tend to use globs for rustc-specific information because there might be some very specific times we need to care about some of the details) However, "Packaged files" does not fit into any of that and, for now, we are erring on the side of redacting less, rather than more, with the move to snapbox. As we see how it works out and what the underlying requirements are, we can revisit this.
1 parent 9229609 commit fd8a91d

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

crates/cargo-test-support/src/compare.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ fn add_common_redactions(subs: &mut snapbox::Redactions) {
166166
.unwrap();
167167
subs.insert(
168168
"[FILE_NUM]",
169-
regex!(r"\[(PACKAGED|REMOVED|SUMMARY)\] (?<redacted>[0-9]+) files"),
169+
regex!(r"\[(REMOVED|SUMMARY)\] (?<redacted>[0-9]+) files"),
170170
)
171171
.unwrap();
172172
subs.insert(

tests/testsuite/alt_registry.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ fn publish_with_registry_dependency() {
346346
See https://doc.rust-lang.org/cargo/reference/manifest.html#package-metadata for more info.
347347
[PACKAGING] foo v0.0.1 ([ROOT]/foo)
348348
[UPDATING] `alternative` index
349-
[PACKAGED] [FILE_NUM] files, [FILE_SIZE]B ([FILE_SIZE]B compressed)
349+
[PACKAGED] 4 files, [FILE_SIZE]B ([FILE_SIZE]B compressed)
350350
[VERIFYING] foo v0.0.1 ([ROOT]/foo)
351351
[DOWNLOADING] crates ...
352352
[DOWNLOADED] bar v0.0.1 (registry `alternative`)
@@ -512,7 +512,7 @@ fn publish_to_alt_registry() {
512512
[WARNING] manifest has no description, license, license-file, documentation, homepage or repository.
513513
See https://doc.rust-lang.org/cargo/reference/manifest.html#package-metadata for more info.
514514
[PACKAGING] foo v0.0.1 ([ROOT]/foo)
515-
[PACKAGED] [FILE_NUM] files, [FILE_SIZE]B ([FILE_SIZE]B compressed)
515+
[PACKAGED] 4 files, [FILE_SIZE]B ([FILE_SIZE]B compressed)
516516
[VERIFYING] foo v0.0.1 ([ROOT]/foo)
517517
[COMPILING] foo v0.0.1 ([ROOT]/foo/target/package/foo-0.0.1)
518518
[FINISHED] `dev` profile [unoptimized + debuginfo] target(s) in [ELAPSED]s
@@ -591,7 +591,7 @@ fn publish_with_crates_io_dep() {
591591
See https://doc.rust-lang.org/cargo/reference/manifest.html#package-metadata for more info.
592592
[PACKAGING] foo v0.0.1 ([ROOT]/foo)
593593
[UPDATING] `dummy-registry` index
594-
[PACKAGED] [FILE_NUM] files, [FILE_SIZE]B ([FILE_SIZE]B compressed)
594+
[PACKAGED] 4 files, [FILE_SIZE]B ([FILE_SIZE]B compressed)
595595
[VERIFYING] foo v0.0.1 ([ROOT]/foo)
596596
[DOWNLOADING] crates ...
597597
[DOWNLOADED] bar v0.0.1 (registry `dummy-registry`)

tests/testsuite/artifact_dep.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2201,7 +2201,7 @@ fn publish_artifact_dep() {
22012201
.with_stderr_data(str![[r#"
22022202
[UPDATING] crates.io index
22032203
[PACKAGING] foo v0.1.0 ([ROOT]/foo)
2204-
[PACKAGED] [FILE_NUM] files, [FILE_SIZE]B ([FILE_SIZE]B compressed)
2204+
[PACKAGED] 3 files, [FILE_SIZE]B ([FILE_SIZE]B compressed)
22052205
[UPLOADING] foo v0.1.0 ([ROOT]/foo)
22062206
[UPLOADED] foo v0.1.0 to registry `crates-io`
22072207
[NOTE] waiting for `foo v0.1.0` to be available at registry `crates-io`.

0 commit comments

Comments
 (0)