[glib/glib-2-68: 6/8] test_string_replace: Exercise zero-length replacements
- From: Simon McVittie <smcv src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [glib/glib-2-68: 6/8] test_string_replace: Exercise zero-length replacements
- Date: Mon, 2 Aug 2021 14:38:03 +0000 (UTC)
commit 79fa8db828b0aeb1b53637a5388fdd0d248d5492
Author: Simon McVittie <smcv collabora com>
Date: Mon Aug 2 11:52:58 2021 +0100
test_string_replace: Exercise zero-length replacements
Previously, these would have done 2**32 replacements, and the first one
would have consumed 6GB of memory in the process. They now match what
Python `str.replace()` does.
Reproduces: https://gitlab.gnome.org/GNOME/glib/-/issues/2452
Signed-off-by: Simon McVittie <smcv collabora com>
glib/tests/string.c | 6 ++++++
1 file changed, 6 insertions(+)
---
diff --git a/glib/tests/string.c b/glib/tests/string.c
index 333e0254e..24098d1be 100644
--- a/glib/tests/string.c
+++ b/glib/tests/string.c
@@ -528,6 +528,12 @@ test_string_replace (void)
"", 3 },
{ "aaa", "aa", "bb", 0,
"bba", 1 },
+ { "foo", "", "bar", 0,
+ "barfbarobarobar", 4 },
+ { "", "", "x", 0,
+ "x", 1 },
+ { "", "", "", 0,
+ "", 1 },
};
gsize i;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]