From 5ba2d46d79d62d5e23a7eebd13a6cc5be83af2c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Ber=C3=A1nek?= Date: Mon, 30 Jun 2025 15:16:54 +0200 Subject: [PATCH] Fix incr patch of `include-blob` --- .../include-blob/0-println.patch | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/collector/compile-benchmarks/include-blob/0-println.patch b/collector/compile-benchmarks/include-blob/0-println.patch index 068b25579..f162ff658 100644 --- a/collector/compile-benchmarks/include-blob/0-println.patch +++ b/collector/compile-benchmarks/include-blob/0-println.patch @@ -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:?}"); }