summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/test-shape.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/test-shape.c b/tests/test-shape.c
index acce5a03..1cf52044 100644
--- a/tests/test-shape.c
+++ b/tests/test-shape.c
@@ -294,6 +294,10 @@ main (int argc, char *argv[])
path = g_test_build_filename (G_TEST_DIST, "shape", NULL);
dir = g_dir_open (path, 0, &error);
g_free (path);
+
+ if (g_error_matches (error, G_FILE_ERROR, G_FILE_ERROR_NOENT))
+ return 0;
+
g_assert_no_error (error);
while ((name = g_dir_read_name (dir)) != NULL)
{