From: Kalev Lember Date: Sat, 14 Apr 2012 12:40:17 +0000 (+0300) Subject: tests/fileutils: Fix Windows build X-Git-Tag: android-x86-6.0-r1~133 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=274940b2476e99ea850da29215c1ce91d2bb85cf;p=android-x86%2Fexternal-bluetooth-glib.git tests/fileutils: Fix Windows build --- diff --git a/glib/tests/fileutils.c b/glib/tests/fileutils.c index befb71b08..bb9a24210 100644 --- a/glib/tests/fileutils.c +++ b/glib/tests/fileutils.c @@ -541,7 +541,9 @@ test_file_errors (void) g_assert (g_file_error_from_errno (ENXIO) == G_FILE_ERROR_NXIO); g_assert (g_file_error_from_errno (ENODEV) == G_FILE_ERROR_NODEV); g_assert (g_file_error_from_errno (EROFS) == G_FILE_ERROR_ROFS); +#ifdef ETXTBSY g_assert (g_file_error_from_errno (ETXTBSY) == G_FILE_ERROR_TXTBSY); +#endif g_assert (g_file_error_from_errno (EFAULT) == G_FILE_ERROR_FAULT); g_assert (g_file_error_from_errno (ELOOP) == G_FILE_ERROR_LOOP); g_assert (g_file_error_from_errno (ENOSPC) == G_FILE_ERROR_NOSPC);