Skip to content

Fix incr patch of include-blob #2176

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

Merged
merged 1 commit into from
Jun 30, 2025
Merged
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
14 changes: 7 additions & 7 deletions collector/compile-benchmarks/include-blob/0-println.patch
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
diff --git a/src/main.rs b/src/main.rs
index 9cb1671e..fc854410 100644
index 3f07848e..f0c0dc70 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -6,5 +6,5 @@ fn main() {
"Binary blob last element: {}",
BLOB_BINARY[BLOB_BINARY.len() - 1]
);
- println!("String blob: {BLOB_STRING}");
+ println!("String blob contents: {BLOB_STRING}");
@@ -3,5 +3,5 @@ const BLOB_STRING: &str = include_str!(concat!(env!("OUT_DIR"), "/blob-string"))

fn main() {
println!("Binary blob: {BLOB_BINARY:?}");
- println!("String blob: {BLOB_STRING:?}");
+ println!("String blob contents: {BLOB_STRING:?}");
}
Loading