summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/test-getumask.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/test-getumask.c b/tests/test-getumask.c
index 6ee50836bc..ab1e48ecd9 100644
--- a/tests/test-getumask.c
+++ b/tests/test-getumask.c
@@ -25,6 +25,11 @@ SIGNATURE_CHECK (getumask, mode_t, (void));
#include "macros.h"
+#if defined _WIN32 && !defined __CYGWIN__
+/* On native Windows, getumask() always returns 0111. */
+# define ASSUME_UMASK_CONSTANT 1
+#endif
+
int
main (void)
{