[pango/line-breaking-fixes: 14/21] testrandom: Don't assert too much
- From: Matthias Clasen <matthiasc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [pango/line-breaking-fixes: 14/21] testrandom: Don't assert too much
- Date: Sat, 13 Nov 2021 02:42:16 +0000 (UTC)
commit 8df286bfa6fafd992b9dc507ffbe6825ff906bc4
Author: Matthias Clasen <mclasen redhat com>
Date: Fri Nov 12 17:17:03 2021 -0500
testrandom: Don't assert too much
tests/testrandom.c | 12 ++++++++----
1 file changed, 8 insertions(+), 4 deletions(-)
---
diff --git a/tests/testrandom.c b/tests/testrandom.c
index 3f6e4ce0..3b9b543d 100644
--- a/tests/testrandom.c
+++ b/tests/testrandom.c
@@ -131,16 +131,20 @@ test_wrap_char (gconstpointer data)
g_qsort_with_data (sizes, G_N_ELEMENTS (sizes), sizeof (Size), compare_size, NULL);
- g_assert_cmpint (sizes[0].width, >=, min.width);
- g_assert_cmpint (sizes[0].height, <=, min.height);
+ if (sizes[0].set_width >= min.width)
+ {
+ g_assert_cmpint (sizes[0].width, >=, min.width);
+ g_assert_cmpint (sizes[0].height, <=, min.height);
+ }
for (i = 1; i < G_N_ELEMENTS (sizes); i++)
{
+ if (sizes[i].set_width < min.width)
+ continue;
+
g_assert_cmpint (sizes[i-1].set_width, <=, sizes[i].set_width);
g_assert_cmpint (sizes[i-1].width, <=, sizes[i].width);
g_assert_cmpint (sizes[i-1].height, >=, sizes[i].height);
- if (sizes[i-1].width == sizes[i].width)
- g_assert_cmpint (sizes[i-1].height, ==, sizes[i].height);
}
if (sizes[i-1].set_width >= max.width)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]