[gdk-pixbuf] tests: Add separate pixdata tests
- From: Bastien Nocera <hadess src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gdk-pixbuf] tests: Add separate pixdata tests
- Date: Tue, 13 Dec 2016 12:28:45 +0000 (UTC)
commit 674227e18157ff0760ff5684bd36a1f8c0aef70b
Author: Bastien Nocera <hadess hadess net>
Date: Tue Dec 13 13:17:23 2016 +0100
tests: Add separate pixdata tests
https://bugzilla.gnome.org/show_bug.cgi?id=776004
tests/Makefile.am | 10 ++++++++
tests/pixbuf-pixdata.c | 53 ++++++++++++++++++++++++++++++++++++++++++++++
tests/test-image.pixdata | Bin 0 -> 34200 bytes
3 files changed, 63 insertions(+), 0 deletions(-)
---
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 40c3477..f008273 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -32,6 +32,7 @@ test_programs = \
pixbuf-icc \
pixbuf-jpeg \
pixbuf-dpi \
+ pixbuf-pixdata \
pixbuf-stream \
pixbuf-reftest \
pixbuf-resource \
@@ -60,6 +61,7 @@ dist_installed_test_data = \
large.png \
large.jpg \
bug775218.jpg \
+ test-image.pixdata \
$(wildcard $(srcdir)/test-images/fail/*) \
$(wildcard $(srcdir)/test-images/randomly-modified/*) \
$(wildcard $(srcdir)/test-images/reftests/*.*) \
@@ -163,6 +165,14 @@ pixbuf_resource_SOURCES = \
resources.c \
$(NULL)
+pixbuf_pixdata_SOURCES = \
+ pixbuf-pixdata.c \
+ test-common.c \
+ test-common.h \
+ resources.h \
+ resources.c \
+ $(NULL)
+
BUILT_SOURCES += resources.h resources.c
DISTCLEANFILES += \
resources.h resources.c \
diff --git a/tests/pixbuf-pixdata.c b/tests/pixbuf-pixdata.c
new file mode 100644
index 0000000..7ede35a
--- /dev/null
+++ b/tests/pixbuf-pixdata.c
@@ -0,0 +1,53 @@
+/* -*- Mode: C; c-basic-offset: 2; -*- */
+/* GdkPixbuf library - test loaders
+ *
+ * Copyright (C) 2013 Red Hat, Inc.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, see <http://www.gnu.org/licenses/>.
+ *
+ * Author: Matthias Clasen
+ */
+
+#include "config.h"
+#include "gdk-pixbuf/gdk-pixbuf.h"
+#include "test-common.h"
+#include <string.h>
+
+static void
+test_pixdata (void)
+{
+ const gchar *path;
+ GError *error = NULL;
+ GdkPixbuf *ref;
+
+ ref = gdk_pixbuf_new_from_resource ("/test/resource/icc-profile.pixdata", &error);
+ g_assert_no_error (error);
+ g_object_unref (ref);
+
+ path = g_test_get_filename (G_TEST_DIST, "test-image.pixdata", NULL);
+ ref = gdk_pixbuf_new_from_file (path, &error);
+ g_assert_no_error (error);
+
+ g_object_unref (ref);
+}
+
+int
+main (int argc, char **argv)
+{
+ g_test_init (&argc, &argv, NULL);
+
+ g_test_add_func ("/pixbuf/pixdata", test_pixdata);
+
+ return g_test_run ();
+}
diff --git a/tests/test-image.pixdata b/tests/test-image.pixdata
new file mode 100644
index 0000000..541c6cf
Binary files /dev/null and b/tests/test-image.pixdata differ
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]