summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorKoichi Akabe <vbkaisetsu@gmail.com>2024-02-06 22:18:06 +0900
committerKoichi Akabe <vbkaisetsu@gmail.com>2024-02-06 22:18:06 +0900
commitd517773ff145d06c5b9efb21841fbc95caf5f540 (patch)
treeb63b9bd374b48c4a5ee13a73499ded08bd4e412d /test
parent586c8acacd70554759d4a835c2e8aa7d7b04f01b (diff)
Fix "out of memory" when using linear gradient
Diffstat (limited to 'test')
-rw-r--r--test/gradient-scale-crash.c49
-rw-r--r--test/meson.build1
2 files changed, 50 insertions, 0 deletions
diff --git a/test/gradient-scale-crash.c b/test/gradient-scale-crash.c
new file mode 100644
index 000000000..bf005cd38
--- /dev/null
+++ b/test/gradient-scale-crash.c
@@ -0,0 +1,49 @@
+/*
+ * Copyright © 2024 Koichi Akabe
+ *
+ * Permission is hereby granted, free of charge, to any person
+ * obtaining a copy of this software and associated documentation
+ * files (the "Software"), to deal in the Software without
+ * restriction, including without limitation the rights to use, copy,
+ * modify, merge, publish, distribute, sublicense, and/or sell copies
+ * of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be
+ * included in all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
+ * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
+ * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ *
+ * Author: Koichi Akabe <vbkaisetsu@gmail.com>
+ */
+
+#include "cairo-test.h"
+
+static cairo_test_status_t
+draw (cairo_t *cr, int width, int height)
+{
+ cairo_pattern_t *p = cairo_pattern_create_linear(0, 0, 0, 100);
+ cairo_pattern_add_color_stop_rgb(p, 0, 1, 1, 1);
+ cairo_pattern_add_color_stop_rgb(p, 1, 1, 0, 0);
+ cairo_matrix_t m;
+ cairo_matrix_init(&m, 100000, 0, 0, 100000, 0, 0);
+ cairo_pattern_set_matrix(p, &m);
+ cairo_set_source(cr, p);
+ cairo_rectangle(cr, 0, 0, 100, 100);
+ cairo_paint(cr);
+ return CAIRO_TEST_SUCCESS;
+}
+
+CAIRO_TEST (gradient_scale_crash,
+ "Exercises a bug found in scaling gradient pattern",
+ "gradient, pattern", /* keywords */
+ NULL, /* requirements */
+ 0, 0,
+ NULL, draw)
diff --git a/test/meson.build b/test/meson.build
index d7834438f..dff2f2efe 100644
--- a/test/meson.build
+++ b/test/meson.build
@@ -160,6 +160,7 @@ test_sources = [
'get-path-extents.c',
'gradient-alpha.c',
'gradient-constant-alpha.c',
+ 'gradient-scale-crash.c',
'gradient-zero-stops.c',
'gradient-zero-stops-mask.c',
'group-clip.c',