From 698f8c2f01ea549d77d7dc3338a12e04c11057b9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:02:58 +0200 Subject: Adding upstream version 1.64.0+dfsg1. Signed-off-by: Daniel Baumann --- library/core/benches/str.rs | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 library/core/benches/str.rs (limited to 'library/core/benches/str.rs') diff --git a/library/core/benches/str.rs b/library/core/benches/str.rs new file mode 100644 index 000000000..78865d81f --- /dev/null +++ b/library/core/benches/str.rs @@ -0,0 +1,10 @@ +use std::str; +use test::{black_box, Bencher}; + +mod char_count; +mod corpora; + +#[bench] +fn str_validate_emoji(b: &mut Bencher) { + b.iter(|| str::from_utf8(black_box(corpora::emoji::LARGE.as_bytes()))); +} -- cgit v1.2.3