summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorChristoph Reiter <reiter.christoph@gmail.com>2018-12-11 13:36:54 +0100
committerChristoph Reiter <reiter.christoph@gmail.com>2018-12-11 14:47:01 +0100
commitf6e17d13292ad933327514a2a314a28d402529d2 (patch)
treed2da634de6644616d1953ce8d2f85cfc10bb8495 /tests
parent3c0090b2602eb53c796152b67156d19274af0f5f (diff)
downloadgdk-pixbuf-f6e17d13292ad933327514a2a314a28d402529d2.tar.gz
tests/pixbuf-threads: use g_fopen instead of fopen and force binary mode
So we use the right path encoding on Windows and don't interpret the content as text. This makes the pixbuf-threads run on Windows.
Diffstat (limited to 'tests')
-rw-r--r--tests/pixbuf-threads.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/pixbuf-threads.c b/tests/pixbuf-threads.c
index 0690acd82..fdcf4389f 100644
--- a/tests/pixbuf-threads.c
+++ b/tests/pixbuf-threads.c
@@ -18,6 +18,7 @@
*/
#include "config.h"
+#include <glib/gstdio.h>
#include "gdk-pixbuf/gdk-pixbuf.h"
#include "test-common.h"
@@ -37,7 +38,7 @@ load_image (gpointer data,
path = g_test_get_filename (G_TEST_DIST, "test-images/randomly-modified", filename, NULL);
g_test_message ("reading %s", path);
- file = fopen (path, "r");
+ file = g_fopen (path, "rb");
g_assert (file != NULL);
while (!feof (file))